in reply to Re^2: Using CGI to display images
in thread Using CGI to display images

You look like you may have the wrong content type. Try
binmode STDOUT; # a good idea print $q->header(-type => "image/jpeg" );

I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku ................... flash japh

Replies are listed 'Best First'.
Re^4: Using CGI to display images
by serotta1958 (Novice) on Aug 03, 2011 at 20:05 UTC

    Thanks taht was it!