in reply to random noise background generator

Before anyone fails to run this on a windows box, for cross platform usefulness you'll need to modify the following:

# PNG print $request->header(-type=>'image/png'); print $image->png;

To be:

# PNG print $request->header(-type=>'image/png'); binmode STDOUT; print $image->png;

I like the useles but pretty output though. I remember spending far too much time making QBasic turn an old 386 into a broken TV by using a simillar trick once.

Replies are listed 'Best First'.
Re: Re: random noise background generator
by cogent (Monk) on Dec 08, 2000 at 08:49 UTC

    Hey, good point. Thanks for the input. Change made.