"Zhang Jun" on wrote... | Hi all, | | I want to add some animate text to gif image, but I don't know how to | do it with Perl, | | I want the text animate, so I think I should add the text(with some | change) to different frames(or call them pictures) of the the gif, | | so how can I decode the gif and get the frames ? | I find out "convert" can do that: "convert aaa.gif frame%02d.gif", | but how can I do it with perl script and Image::Magick? | | | I am not familiar with graphic programming, so I do not know whether | my steps are right also. |
Additional. If the text to be added is itself a image sequence (animation) then you can use the -layer composite method to overlay the two sets of images. http://imagemagick.org/Usage/anim_mods/#composite However at this point IM has no functions to handle time syncronization of two different timed image sequences. That is the merging animations with unssyncronised (disjoint) timings. That is it only does frame modification, not a time syncronized merge of animations. The steps that would be involved in that type of process is outlined at the bottom of that same page, so it is only a matter of time for someone to either create an external script to do this, or have it built-in to IM. http://imagemagick.org/Usage/anim_mods/#merge Anthony Thyssen ( System Programmer ) <[EMAIL PROTECTED]> ----------------------------------------------------------------------------- Tunnels stretched off in all directions: up, down, side-ways, and yesterday and tomorrow if the Research Department had come up with anything since breakfast. -- Larry Niven and Steven Barnes, "Dream Park" ----------------------------------------------------------------------------- Anthony's Home is his Castle http://www.cit.gu.edu.au/~anthony/ _______________________________________________ Magick-users mailing list [email protected] http://studio.imagemagick.org/mailman/listinfo/magick-users
