How can I combine multiple GIFs into one GIF file? I just want to display the images side by side.

link|improve this question
2  
What do you mean by combine? Into an animated gif? Tiled? Overlayed? – Benjol Mar 23 '11 at 9:39
feedback

migrated from stackoverflow.com Mar 23 '11 at 12:34

This question came from our site for professional and enthusiast programmers.

3 Answers

up vote 1 down vote accepted

GIMP can work with gif files, they appear just like normal images but each frame in their own layer.

If you're looking for a programmable solution, I've had good experiences with ImageMagick.

Best of all, both are free and open source! :-)

link|improve this answer
Thanks for that, there seems to be many options, where do I convert multipls gifs into one ? – Anonymous Mar 23 '11 at 10:01
@user470184: That really, really depends on the already asked question: What do you specifically want to do? Tile the gifs? Have them play one after another? Play them overlayed? etc. But with GIMP you can do almost anything you like, the gifs show up as an image with a bunch of layers, and you can create more layers, remove them, edit their contents, timing, etc... – jho Mar 23 '11 at 10:21
I just want to display the images side by side – Anonymous Mar 23 '11 at 10:23
@user470184: GIMP can do that. Just grow the layers enough so that you can fit both images side by side, and copy the images for each layer from the source gif into the combined one. – jho Mar 23 '11 at 10:27
Thanks for your help – user73076 Mar 23 '11 at 14:21
feedback

Given this question is asked on SO, I'm going to go with: GdiPlus exposes an API on Windows you can use to read, and write GIF files (amongst other file formats). You will be able to combine an arbitrary number of source images into an animated gif.

link|improve this answer
feedback

You can check out some of the CSS Sprite generators out there. These are designed to combine multiple image files into a single file to reduce the number of connections needed to load a website.

Some examples are:
http://csssprites.com/
http://spritegen.website-performance.org/
http://csssprites.org/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.