Ubuntu – Mass conversion of images to GIF

image processingsoftware-recommendation

I have created over 600 images from a simulation I ran. I want to convert these images into a GIF format. Can you provide me a way to do so and one that allows me to show each image for >1second.

Best Answer

ImageMagick can do it:

convert -delay 100 -loop 0 image*.png animation.gif

Replace image*.png with whatever your images are named.

Install it with:

sudo apt-get install imagemagick

Beware that you'll need a lot of RAM for 600 files.