in reply to Re: Cropping Images using Image::Magick
in thread Cropping Images using Image::Magick
I changed the output to JPEG, and it works fine.
my $o = new Image::Magick; $o->Read("$tempfile"); # Geometry=>'300x200"+"115"+"256', # x=>115, y=>256, width=>300, height=>200, $o->Crop(geometry=>"300x200+115+256!"); $o->Write(filename=>"$outfile", compression=>"jpeg");
Thanks for your help.
John J Reiser
newrisedesigns.com
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Cropping Images using Image::Magick
by shotgunefx (Parson) on Oct 03, 2002 at 03:32 UTC |