How do I make animated GIFs?

link|improve this question
8  
In what case. By hand, code wise - client side, server side... Pls put some effort in your questions so we can truly answer them instead of pointing in various directions with answers. – bastijn Aug 13 '09 at 15:05
7  
You shouldn't. Animated GIFs are evil. – Christian Aug 13 '09 at 21:17
feedback

migrated from stackoverflow.com Aug 13 '09 at 15:16

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

8 Answers

There's lots of software available that will help you do this, much of it available for free. Indeed, you may already have the necessary software on your computer. Here is a good overview of the process itself and some of the software available.

link|improve this answer
Some of the tutorials there a bit out-dated though (the one for Photoshop regards v5.5 using Imageready, so what a decade of being obsolete or so?). – Xenorose Aug 15 '09 at 17:35
feedback

Paint.NET is free and very good image creation software.

It has an active user base and active forums - see this post - "Make an Animated .GIF with Paint.NET"

link|improve this answer
feedback

You can do it using the convert command from the ImageMagick package.

Example:

convert -delay 20 -loop 0 frames*.gif  myanimation.gif

The -delay argument specifies the delay between frames (in units of 1/100s), white the -loop specifies if you want the animation to loop (may not work on all browsers).

Apart from creating animated gifs, convert can do a whole lot more so it's definitely worth having a look. I tend to use it mostly for converting between different image formats and mass resizing images.

Look here for more options: http://www.imagemagick.org/script/convert.php

Update

ImageMagick is available for Windows, Mac OSX and Unix/Linux. If you're on a Linux box, chances are you already have it installed :)

link|improve this answer
No love for the Windows version of imagemagick? Its just as kick-ass there as well. :) – AnonJr Aug 14 '09 at 11:11
As is the cygwin version too – timday Aug 14 '09 at 12:06
Apologies for my bias. Answer updated :) – Shawn Chin Aug 14 '09 at 12:23
feedback

I recently needed to quickly toss a .gif image together. So i made each frame in paint then uploaded them all here which put them together into a gif image for me. Turned out pretty well actually.

Of course you can also download some client software to convert videos into .gifs, or i used to use Image Ready (if it's still around?)

link|improve this answer
feedback

To make gifs from a bunch of images, I use Gimp's "open as layers" features, and then I just have to save with a .gif extention.

You can find a more detailled explanation of the process here, which explains how to create a gif from a video file.

link|improve this answer
feedback

Whirlgif is a simple command line program to make animated GIFs.

We used it to make animated GIFs of Cassini images at Space Science Institute - so it's proven useful in real life.

Where it lives on the web these days, I'm not sure. Happy searching...

link|improve this answer
1  
anyone remember the fabulous MS GIF Animator, another oldie. like so many other MS programs that actually WORKED it was disconinued (almost 10 years ago) but it is still alive and kicking after all these years, works (portable) even with Windows 7 :) download.cnet.com/Microsoft-GIF-Animator/… – Molly7244 Nov 7 '09 at 21:35
feedback

The easiest way is to use Photoshop, if you have it search on google for a tutorial, something like this

link|improve this answer
feedback

Your Answer

 
or
required, but never shown