PerlMagick +append
Posted: 2012-12-16T21:12:35-07:00
HI, all
a couple of questions:
(1) at the command line, I can do this:
convert pic1.jpg pic2.jpg +append stitched_horizontally.jpg
How do I do the same with PerlMagick ??
(2) along the same lines: if I have two handles -- one obtained through $handle1->Read('path1.jpg') and the other obtain though method "new" ($handle2=Image::Magick->new() and $handle2->Read('xc:white')) ), how can I stitch the two images together ?
Tried many variations of $combined->Append(...) but am failing
a couple of questions:
(1) at the command line, I can do this:
convert pic1.jpg pic2.jpg +append stitched_horizontally.jpg
How do I do the same with PerlMagick ??
(2) along the same lines: if I have two handles -- one obtained through $handle1->Read('path1.jpg') and the other obtain though method "new" ($handle2=Image::Magick->new() and $handle2->Read('xc:white')) ), how can I stitch the two images together ?
Tried many variations of $combined->Append(...) but am failing