imagemagick - Add mutliple gifs to one background -
i'm attempting "play" same gif, @ once, in multiple areas of same, single, image. reading thru documentation im v6, there no examples of this. have attempted chaining separate 'convert' composite commands without luck.
is possible in 1 command or multiple?
in imagemagick, can use null: , -layers composite combine multiple animations onto 1 background image. each animation must have same number of frames , delays. example in unix syntax new line character \ (replace ^ windows):
convert -size 512x512 xc:black \ null: morph_anim_1pt.gif -gravity northwest -geometry +50+50 -layers composite \ null: morph_anim_1pt.gif -gravity southwest -geometry +50+50 -layers composite \ null: morph_anim_1pt.gif -gravity southeast -geometry +50+50 -layers composite \ null: morph_anim_1pt.gif -gravity northeast -geometry +50+50 -layers composite \ morph_anim_1pt_animation.gif
Comments
Post a Comment