2017-07-26 7 views
0

同じ、単一の画像の複数の領域で同じgifを一度に「再生」しようとしています。 IM v6のドキュメントを読んでも、その例はありません。私はまた、別々の 'コンバート'コンポジットコマンドを連鎖させようと試みました。1つの背景に複数のgifを追加する

これは1つのコマンドでも複数でも可能ですか?

答えて

1

ImageMagickでは、null:と-layers複合を使用して、複数のアニメーションを1つの背景イメージに結合できます。しかし、各アニメーションは同じ数のフレームと遅延を持たなければなりません。たとえば、UNIXの構文で改行文字\(^ Windows用と交換してください)と:

enter image description here

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 

enter image description here

http://www.imagemagick.org/Usage/anim_mods/#composite

を参照してください。
関連する問題