Help for this page

Select Code to Download


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