Gif, static and dstover not working for me
Posted: 2016-09-08T09:54:55-07:00
Code: Select all
convert -delay 20 space.gif -coalesce -layers OptimizePlus null: \( alien.gif planet.gif -gravity center -compose DstOver -composite \) -loop 0 -layers composite output.gif
space.gif
Alien.gif
planet.gif
output.gif
But if i swap the images alien and planet, and use composite over, it is working.
Code: Select all
convert -delay 20 space.gif -coalesce -layers OptimizePlus null: \( alien.gif planet.gif +swap -gravity center -compose Over -composite \) -loop 0 -layers composite output.gif
Why the first command is not working. How to make it work?