Reputation: 401
I have a bunch of files labelled 1.png and so on. I'm using the following command line to produce a gif animation:
convert -delay 20 *.png animation.gif
But the frames get superposed sequentially. I did not expect this behavior, what might be wrong?
Thanks
Upvotes: 6
Views: 2577
Reputation: 84529
Option -dispose previous
:
convert -dispose previous -delay 20 *.png animation.gif
Upvotes: 14