Help for this page

Select Code to Download


  1. or download this
    print "Content-type: image/png\n\n";
    print $gd->png;
    
  2. or download this
    open IMG, '>file.png';
    print IMG $gd->png;
    close IMG;
    print "Content-type: text/html\n\n";
    print '<img src="http://yourserver.com/file.png">';