How can I combine multiple GIFs into one GIF file? I just want to display the images side by side.
feedback
|
migrated from stackoverflow.com Mar 23 '11 at 12:34
This question came from our site for professional and enthusiast programmers.
|
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! :-) | |||||||||||
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. | |||
|
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: | |||
|
feedback
|