set geometry to imagesize +0+0

PerlMagick is an object-oriented Perl interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning PerlMagick.
Post Reply
finger

set geometry to imagesize +0+0

Post by finger »

Hi.
Is there any way I can set the geometry to imagesize +0+0 for example I would like to change
333x333 801x819+168+177 to 333x333 333x333+0+0

Thanks
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: set geometry to imagesize +0+0

Post by fmw42 »

I don't know Perlmagick, but see if there is a Page command and probably use 0x0+0+0 as the equivalent of -repage
finger

Re: set geometry to imagesize +0+0

Post by finger »

Thanks it works
$img->Set( page => '0x0+0+0' );
Post Reply