Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

4
  • 24
    I'm a Python guy but found ImageMagick much easier here. I just made my sequence of images and ran something like convert -delay 20 -loop 0 *jpg animated.gif
    – Nick
    Commented Apr 3, 2014 at 1:41
  • I agree, this is the best solution that I've come across. Here's a minimal example (based on the user Steve B's example code posted at stackoverflow.com/questions/10922285/…): pastebin.com/JJ6ZuXdz
    – andreasdr
    Commented Nov 4, 2014 at 19:42
  • Using ImageMagick, you can also easily resize the animated gif such as convert -delay 20 -resize 300x200 -loop 0 *jpg animated.gif
    – Jun Wang
    Commented Nov 29, 2017 at 15:47
  • wont this run into issues in that it depends on using a *.jpg style list of input items, eventually running into CLI command length problems and also problems with consistent ordering of the items? Commented Dec 21, 2021 at 1:42