Help for this page

Select Code to Download


  1. or download this
    use Image::Magick;
    
    ...
    
    $filename = "test.png";
    $image->Write("$filename");
    
  2. or download this
    use GD;
    
    ...
    open(IMAGE, ">test.png") or die;
    binmode IMAGE;
    print IMAGE $im->png;