If I use
Code: Select all
convert input.tif -crop 400x300+301-143 -page 400x300+0+143 output.gif
When I'm using the perlmagick version of it:
Code: Select all
$image->Crop(geometry => "400x300+301-143");
$image->Set(page => "400x300+0+143");
For some funny reason, geometries of
Code: Select all
-crop 400x300-99-143 -page 400x300+99+143
What am I missing here?
Thomas Mack