casimo has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/local/bin/perl use Image::Magick; my($image, $x); $image = Image::Magick->new; $x = $image->Read('im1.gif', 'im2.gif', 'im3.gif', 'im4.gif'); warn "$x" if "$x"; $x = $image->Append(stack=>{true,false}); warn "$x" if "$x"; $x->Write('appended.gif'); warn "$x" if "$x";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Append images with ImageMagick
by jethro (Monsignor) on Jul 08, 2009 at 00:26 UTC | |
by casimo (Sexton) on Jul 08, 2009 at 02:44 UTC | |
by thunders (Priest) on Jul 08, 2009 at 03:15 UTC | |
by thunders (Priest) on Jul 08, 2009 at 03:22 UTC | |
by casimo (Sexton) on Jul 08, 2009 at 04:54 UTC |