I have been able to create the convert command structure I want to replicate
it in perl but I am having trouble with the end image not being the same as
the command line version.

Command Line:

convert \( CN.gif DN.gif +append \) \( CM.gif DM.gif +append \) -append
test.gif
--- Here I get four images in a square configuration

use Image::Magick;
my $dir = "/projects";
my $image = Image::Magick->new;

$image->Read("$dir/CN.gif", "$dir/DN.gif", "$dir/CM.gif", "$dir/DM.gif");
$image->Append(stack=>'true');
$image->Append();
$image->Write("gif:$dir/test.gif");
----  Here I get what I see as one image with it being the first one read.

Any ideas??

Thanks
Mike


-- 
View this message in context: 
http://www.nabble.com/immulating-commandline-convert-command-in-perl-tf2088240.html#a5755600
Sent from the Magick-users forum at Nabble.com.

_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users

Reply via email to