Help for this page
# in the HTML generating code: # set up headers and other html... print "<img src='/cgi-bin/my-image.cgi?some=params'>";
# in the /cgi-bin/my-image.cgi script: ... binmode STDOUT; print $image->png; # end