jeffpflueger has asked for the wisdom of the Perl Monks concerning the following question:
#!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: PerlMagick,ImageMagick on Windows 2000 with Active State Perl
by zengargoyle (Deacon) on Nov 29, 2003 at 01:10 UTC | |
by jeffpflueger (Beadle) on Nov 29, 2003 at 21:23 UTC | |
|
Re: PerlMagick,ImageMagick on Windows 2000 with Active State Perl
by simonm (Vicar) on Nov 29, 2003 at 00:36 UTC | |
by jeffpflueger (Beadle) on Nov 29, 2003 at 23:44 UTC |