Help for this page

Select Code to Download


  1. or download this
    print "Content-type: image/gif\n\n";
    print $im->gif;
    
  2. or download this
    <IMG SRC="image.cgi">
    
  3. or download this
    <IMG SRC="&image_routine">
    
  4. or download this
    $gif_data = $im->gif;
    open (TEST,"$image_test") || die;
    binmode TEST;
    print TEST $gif_data;
    close TEST