in reply to Re: Image::Magick on Windows!
in thread Image::Magick on Windows!
#!c:/perl -w use strict; use Image::Magick; my $image = new Image::Magick; my $x = $image->Read("nettie.tif"); warn "$x" if "$x"; $x = $image->Scale(width=>"200", height=>"200"); warn "$x" if "$x"; $x = $image->Write("nettienew.tif"); warn "$x" if "$x";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Image::Magick on Windows!
by jeffpflueger (Beadle) on Nov 29, 2003 at 23:42 UTC | |
by Anonymous Monk on Jul 16, 2009 at 00:01 UTC |