Tell me more ×
Ask Different is a question and answer site for power users of Apple hardware and software. It's 100% free, no registration required.

I searched the App Store for "animated GIF" but the only returned app was one to convert a movie file into an animated GIF. I need to go the other way: I have a series of screenshots taken of an app that I'm a beta tester for. These are the standard PNG files created by OS X's ⌘+⇧+4 keyboard shortcut. They show the sequence of events I use to reproduce a display bug.

When I say "App Store quality" I mean they are native Cocoa apps. These apps generally have attention paid to user interface and usability. You know, all the things that make good Mac apps good.

share|improve this question
Why not use the OS X QuickTime.app and produce a movie in a format other than GIF? – mankoff Nov 8 '11 at 4:56
There are a lot of websites that can do thos for you, just google the term animated gif converter. Most are free. – Graeme Hutchison Nov 8 '11 at 12:04

6 Answers

It's not exactly Cocoa, but ImageMagick makes it fairly easy to create animated gifs.

convert -delay 4 -loop 0 *.bmp animation.gif
# 0.04s delay between frames, loop once

You can install it with brew install imagemagick after installing Homebrew.

share|improve this answer
or sudo port install ImageMagick after installing macports – Mark Apr 11 at 12:25

The app GIFQuickMaker ($1.99) describes itself as:

Description
GIF, TIFF, BMP, PNG, JPEG and GIF image transmission combination and GIF animations can be created.

share|improve this answer

As far as high-quality apps in the app store that can produce animated GIFs, there's always Photoshop Elements. It's not cheap, but it's the consumer version of the industry standard for photo manipulation.

share|improve this answer

You could try GraphicConverter X

I last used GraphicConverter to make animated GIF files probably 10 years ago. But it worked fine back then and had plenty of options.

Here's some instructions, although these may be for an older version and may need to be adjusted slightly for the latest version:

  1. Draw your animation cells in a graphics program.

  2. Copy the first animation cell and start GraphicConverter.

  3. From the Edit menu do "new picture with clipboard". This will create a graphic the exact size as the cell in the paste buffer. This will be your first frame.

  4. Copy another animation cell.

  5. From the Picture menu in GraphicConverter do "Show movie options". It will ask you if you want to convert your document to an animation GIF, click "Convert"

  6. From your movie options window click "Insert Frame" button. It will insert the cell you have in your paste buffer into the frame. Continue copying cells and inserting frames until your animation is complete. If you want to make it an endless loop then you can click that box in the movie options.

  7. Set the delay between frames in the top of the movie options box. Experiment with this, you can change this when ever you want. The larger the number the longer each frame is displayed.

  8. Save your work.

share|improve this answer

I'd like to revive this question in the hopes of generating a more complete list of the available options which are either Mac apps or command-line tools (not websites).

These are the ones I am aware of.

(I've marked this answer as a community wiki in the hopes that others will add to it)

share|improve this answer

Don't know if you've heard about this one yet: Look for GIFfun.app

I do something similar to what you want -- grab several screen shots and drag-n-drop them onto GIFfun.app and it makes them into an animated GIF. It works great. If it weren't free I'd'a paid money for it.

share|improve this answer
2  
Can you please add a link to the application's web site? – patrix Apr 11 at 11:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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