Skip to content

Instantly share code, notes, and snippets.

@ambethia
Created November 7, 2016 00:51
Show Gist options
  • Save ambethia/55b5970919b66ff7e3fe5d0a3f2e05cf to your computer and use it in GitHub Desktop.
Save ambethia/55b5970919b66ff7e3fe5d0a3f2e05cf to your computer and use it in GitHub Desktop.
Using Imagemagick to make an animated gif from a sequence of png images
convert -delay 10 -resize 800x600 -loop 0 *.png animation.gif
@ambethia
Copy link
Author

ambethia commented Nov 7, 2016

Note, -delay is given in 1/100ths of a second, so 10 is 100ms or 1/10th of a second, not ten seconds.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment