Create Animated GIFs with ImageMagick

Dmitri Popov

Productivity Sauce

Nov 20, 2014 GMT
Dmitri Popov

Animated GIFs are not only good for posting funny cat videos. They are also suitable for creating short sequences demonstrating a specific feature of an application or explaining how to use a certain tool. And using the mighty ImageMagick software, you can create animated GIFs with consummate ease. First of all, make sure that ImageMagick is installed on your system. The software is available in the repositories of all mainstream Linux distributions, so you can install it using your distro's package manager.

Next, take a series of screenshots and name them in the desired sequence (e.g., 001.png, 002.png, 003.png, etc.). Using the convert -resize 800x *.png command, you can resize all screenshots in one fell swoop (replace 800 with the desired width value in pixels). Switch then to the directory containing the screenshots, and run the command below to generate an animated GIF:

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

The delay parameter specifies the delay between frames in milliseconds, while the loop parameter determines how many times the animation runs (the 0 value will run the loop infinitely).

comments powered by Disqus
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters

Support Our Work

Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

Learn More

News