Help for this page

Select Code to Download


  1. or download this
    $file='incl/1x1transparent.png';
    print "Content-type: image/png\n";
    ...
    }
    close IMG;
    exit 0;
    
  2. or download this
    print "Content-type: image/png\n\n";
    binmode STDOUT;
    ...
    $image->transparent($white);
    print $image->png;
    exit;