Help me,GIF animation on the merger
Posted: 2006-12-24T11:58:27-07:00
I have two GIF Animation, namely:
test_pic_1.gif
http://images.blogcn.com/2006/12/26/1/g ... 261744.gif
test_pic_2.gif
http://images.blogcn.com/2006/12/26/1/g ... 261831.gif
How merged into a GIF photo?
I have the following perlcode, but I did not need the results.
test_pic_new.gif
http://images.blogcn.com/2006/12/26/1/g ... 226199.gif
I need the results are as follows:
test_pic.gif
http://images.blogcn.com/2006/12/26/1/g ... 261935.gif
Seek help. Very grateful!
test_pic_1.gif
http://images.blogcn.com/2006/12/26/1/g ... 261744.gif
test_pic_2.gif
http://images.blogcn.com/2006/12/26/1/g ... 261831.gif
How merged into a GIF photo?
I have the following perlcode, but I did not need the results.
Code: Select all
use Image::Magick;
$image1 = new Image::Magick;
$image1->Read('test_pic_1.gif');
$image1->Read('test_pic_2.gif');
$image1->Append(stack=>"");
$image1->Write(filename=>'test_pic_new.gif');
http://images.blogcn.com/2006/12/26/1/g ... 226199.gif
I need the results are as follows:
test_pic.gif
http://images.blogcn.com/2006/12/26/1/g ... 261935.gif
Seek help. Very grateful!