View Full Version : TV pic effect


Superstar
02-07-2005, 02:29 AM
How do i make this picture effect? I'm not sure whats its called but think its a noise, I could be wrong. http://paper-parachutes.net/

tokyo bleu
02-07-2005, 02:34 AM
http://s6.invisionfree.com/KhubsuratGraphics/index.php?showtopic=30

Superstar
02-07-2005, 02:41 AM
Are there any tutorials for it for psp?

raeanne
02-07-2005, 06:21 AM
1. Open an image the size you want with a black background
2. Go to Effects->noise->add 100% random checked
3.Go to Colors->Colorize hue 0 sat 0
4. Add new layer flood fill (paint bucket tool) with black add noise 98%, colorize same as before
5. Add new layer, ff (flood fill), add noise 96%, colorize
6. Add new layer, ff, add noise 94%, colorize
You should have a total of 3 layers plus the background. Now save as a psp image, make sure all layers are visible. Open Animation shop and go to file->open and find your file. It looks pretty good with the default frame properties so just save it and your done.

HTH
Rae
PS if you check uniform when adding the noise it will give the animation a slightly different look, you can decide which you like better.

Superstar
02-07-2005, 07:29 PM
Thanks :)

aviegrace
02-09-2005, 04:30 AM
Hi, you are talking about my site! Well actually all I did was use the mouseover code (http://www.lissaexplains.com/javascript3.shtml#images) from Lissa's site

Here's my code

(This is between <head> and <title>)


<script language="JavaScript" type="text/javascript">
<!-- Hide the script from old browsers --

img0_on = new Image(65,49);
img0_on.src="images/cam.jpg";
img0_off = new Image(65,49);
img0_off.src="images/noise.gif";

function over_image(parm_name)
{
document[parm_name].src = eval(parm_name + "_on.src");
}
function off_image(parm_name)
{
document[parm_name].src = eval(parm_name + "_off.src");
}
// --End Hiding Here -->
</script>


(This is the code for the mouseover effect to show up)


<a href="cam.html" onmouseover="over_image('img0');" onmouseout="off_image('img0')"> <img src="noise.gif" border="0" name="img0"> </a>

Superstar
02-09-2005, 07:46 PM
cool, I didn't know it was ur site ^_^. i knew the code was from lissa's site but i just wanted to know how to do the tv static thing coz it looks pretty cool! :D