My IM version is: ImageMagick 6.9.6-3 Q16 x86_64 2016-11-05
My platform is: Linux
I am trying to place more than one animated gif image onto a static image. Everything is fine(no errors) except for the result. One of the animated gif images (left arrow gif image) 'blinks' as you'll see from the resulting image. The down arrow gif image animates fine.
Here is my command:
Code: Select all
convert background.png null: \( downArrow.gif -coalesce \) -gravity Northwest -compose over -layers composite null: \( leftArrow.gif -coalesce \) -gravity SouthEast -compose over -layers composite -layers Optimize gifResult.gif
Left arrow gif image: https://www.dropbox.com/s/5ut4d745mdha9 ... w.gif?dl=0
Result gif image: https://www.dropbox.com/s/dsopmzlglrdw6 ... t.gif?dl=0
Is it possible to get the animated gif images to animate on the static image as intended without any blinking?
Thank you in advance.