Help for this page

Select Code to Download


  1. or download this
    open O, '>:raw',  $fname or die $!;
    print O $im->png;
    close O;
    system $fname;
    
  2. or download this
    open(GD, ">$0.png") or die;
    binmode GD;
    print GD $im->png;
    close GD;