46 Animated gif from images

Created Monday 20 June 2022


How to create a GIF from a list of images.


Go to the folder where you kept all the images, and run the following command from the terminal to create a GIF file:


convert -delay 120 -loop 0 *.png linux.gif


-delay 120 : The GIF animation speed
-loop 0 : Infinite loops of the animation.