Overlaying animated gif on jpeg
Posted: 2007-03-04T09:46:44-07:00
Hello,
I'm having a problem when overlaying an animated gif over a jpeg file.
Here is what I use:
the image generated is the source image with the animated gif ontop, but I can't seem to position the animated overlay.
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
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