peixe01 wrote:thanks fred, thast just so much information i am not sure what to grab, all my tests fail, i though this would be somewhat easy, why would -draw be needed? both images have the same size. -layers composite also not sure, there is only 1 layer with transparency, the foreground image.
can you post a link to your background image and animation image? if not tell me what the names are an I will give you the command line. is text.gif the background and wheel.gif the animation or the other way around.
One way is:
convert animation.gif -coalesce \
-draw 'image DstOver 0,0 0,0 "background.gif"' \
-layers Optimize new_animation.gif
The other way is:
convert background.gif null: \( animation.gif -coalesce \) \
-layers Composite \
-layers Optimize new_animation.gif