animatedGIFs

Creating Animated GIFs

Download as .zip Download as .tar.gz View on GitHub

Creating Animated GIFs

Animated GIFs, such as the one given below are easy to create. Among the possibilities are using gifsicle from Gifsicle and convert from ImageMagick.

Using gifsicle

From Gifsicle:

Using convert

From ImageMagick:

Instead of using a wildcard (*.png) on the command-line, one may also use a list (a text file, e.g., listOfImages.txt) of images in which the filenames of the images to be combined are listed (in one column, one filename per row) in the proper order of appearance. This is specially useful when it is not easy to syncronize the names of the files with the order of appearance:

convert -delay 100 @listOfImages.txt all.gif

One can get a list of images in a directory by using (at the command-line within the directory):

ls --color=never > listOfImages.txt

and editing this list so that the images are listed in the order of appearance in the animated GIF to be created using convert. (In some installs of ImageMagick, one uses the magick, instead of convert, command-line tool.)

Notes

There are a number of other alternative Android apps from the Google Play Store (search under animator).

Example

The screenshot (partly edited) of a t3C tic-tac-toe game session given below was created using gifsicle and the images in the images-gif folder, i.e., issue the command

gifsicle --colors 256 -d 300 *.gif > t3C-all.gif

under (the copy in your computer) of the images-gif subdirectory given above.
tic-tac-toe: The Game!

Acknowledgements

My sincerest gratitude to Eddie Köhler for Gifsicle, ImageMagick, and Dmitry Groshev, Mark Tyler, Xiaolin Wu et. al. for mtPaint. Much thanks, too, to the Debian Project for the Debian 8 (Jessie) GNU/Linux OS and GitHub for its generosity in providing space for this project.

License

Creative Commons License
animatedGIFs by Justine Leon A. Uro is licensed under a Creative Commons Attribution 4.0 International License.
Based on a work at https://github.com/justineuro/animatedGIFs