Merge GIFs with gifsicle

By  on  
Merge GIFs

Creating a GIF from a video is fairly simple at this point, as I pointed out in Convert Video to GIF or GIF to Video, but working with multiple GIFs is something many people would like to do.  The top GIF manipulation library for years has been Gifsicle, so I looked toward Gifsicle for merging multiple animated GIF images.

Before you merge your GIFs, however, you'll want to ensure that they're the same size.  Gifsicle has a --crop option which crops images to a given size:

gifsicle --crop 300x300 ....

If you have GIFs of different sizes (i.e. you don't crop), the earlier GIF may show up behind subsequent GIFs, making for a sloppy image.

Additionally you may receive a gifsicle: warning: too many colors, using local colormaps error.  To work around that error, you'll want to add --colors 256 parameter when merge the GIFs.

So let's assume you have GIFs of the same size and you're ready to create your merged GIF.  The following command will achieve the desired result:

gifsicle --crop 370x275 --colors 256 --merge first.gif second.gif -o merged.gif

You can use any number of GIFs and the outcome is a solid, single GIF.  If you're a performance nut, you'll want to optimize the GIF as well!

Gifsicle continues to amaze me and I look forward to using the utility more.  GIFs by nature are mostly for fun these days and Gifsicle makes that easy!

Recent Features

  • By
    5 HTML5 APIs You Didn’t Know Existed

    When you say or read "HTML5", you half expect exotic dancers and unicorns to walk into the room to the tune of "I'm Sexy and I Know It."  Can you blame us though?  We watched the fundamental APIs stagnate for so long that a basic feature...

  • By
    Create Namespaced Classes with MooTools

    MooTools has always gotten a bit of grief for not inherently using and standardizing namespaced-based JavaScript classes like the Dojo Toolkit does.  Many developers create their classes as globals which is generally frowned up.  I mostly disagree with that stance, but each to their own.  In any event...

Incredible Demos

  • By
    Using Opacity to Show Focus with MooTools

    I'm a huge fan of using subtle effects like link nudging (jQuery, MooTools) to enhance the user experience and increase the perceived dynamism of my websites. Trust me -- a lot of little things are what take websites to the next level.

  • By
    Animated AJAX Record Deletion Using Dojo

    I'm a huge fan of WordPress' method of individual article deletion. You click the delete link, the menu item animates red, and the item disappears. Here's how to achieve that functionality with Dojo JavaScript. The PHP - Content & Header The following snippet goes at the...

Discussion

  1. That’s pretty neato! The possibilities are infinite (or dare I say OVER 9000)!

  2. Matija

    Gifsicle is fantastic. If you want to know more see http://webstackoflove.com/modifying-loop-flag-for-animated-gif-files/ as I’ve used it for modifying loop flags and batch processing.

    • Whoa, excellent! I was looking to do a post on exactly that but you’ve beaten me to it! Awesome!

  3. Well, TBH i’m not sure where exactly do I add the command lines :/

  4. Via the Terminal app or similar depending on your OS.

  5. NanooGeek

    gifsicle 1.87 Win64 works, and produces a combined output from two looping .gif from skywarn.org (did Not use --crop, since they are larger than the example, and of uniform size). However, the combined gif only loops through the 1st part.

    • NanooGeek

      Aha, one must use the --append flag, instead of --merge.

  6. Dan

    How do you get to the interface so you can actually create the gifs????

  7. Locks

    How would go about merging 100+ gifs in a directory? Does gifsicle work with grep functions?

    • Locks

      In case anyone else was looking for the answer to this question. This can be achieved with:
      gifsicle --colors 256 --merge *.gif -o output.gif

  8. Locks

    Can anyone recommend an alternative to gifsicle that can support merging gifs with greater than 8-bit (256) colour?

Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!