I'm having a problem when overlaying an animated gif over a jpeg file.
Here is what I use:
Code: Select all
convert source.jpg \
\( -clone 0 bigheart-0.gif -composite -geometry +30+30 \) \
\( -clone 0 bigheart-1.gif -composite -geometry +30+30 \) \
\( -clone 0 bigheart-2.gif -composite -geometry +30+30 \) \
-delete 0 -set delay 25 output.gif
How do I position the animated layer to a certain position?
Also, is there an easier way than the method I use? I need to +adjoin an animated gif, only then I can use the animated gif to put over the source jpeg.
Thank you,
Joe