← Back to Blog

How to Convert Images to GIF on Mac (5 Methods) 2026

February 8, 202610 min read

An images to GIF converter takes a series of static pictures and stitches them into a looping animated GIF. Photos, screenshots, illustrations — any image works. Unlike screen-recording GIFs, you start with files you already have. That makes it perfect for slideshows, product demos, and tutorials.

TL;DR: The fastest free way to convert images to GIF on Mac is Apple Shortcuts. Create a shortcut with "Select Photos" → "Make GIF" → "Save File." No install needed, works from your menu bar. For more control, use ImageMagick in Terminal or PicGIF Lite from the App Store.

Whether you're a content creator or a developer documenting a UI flow, this guide covers five ways to create a GIF from pictures on your Mac.

Why convert images to GIF?

Before picking a tool, it helps to know when a photo GIF maker approach beats video or static images:

  • Tutorials and how-tos — Show a sequence of steps without recording your screen. Great for combining multiple screenshots into one visual.
  • Social media content — Animated posts grab more attention than static images on Twitter, LinkedIn, and Slack.
  • Product demos — Loop through feature highlights or before/after comparisons without hosting video.
  • Email campaigns — GIFs play inline in most email clients; video doesn't.
  • Memes and reactions — Turn a burst of photos into something shareable.

The key advantage over video? GIFs auto-play everywhere, need no player, and loop infinitely. Apple's Preview app supports a wide range of image formats. Any of them can serve as source material for your GIFs.

Method 1: Preview + Automator (built-in, free)

Your Mac already has everything you need. Preview handles image viewing and basic edits, while Automator can batch-process files into a GIF.

Automator workflow converting images to GIF on Mac
Automator workflow converting images to GIF on Mac

Setting up the Automator workflow

  1. Open Automator from your Applications folder (or Spotlight: ⌘ + Space, type "Automator").
  2. Choose Quick Action as the document type.
  3. Set "Workflow receives current" to image files in Finder.
  4. Search the action library for "Encode Media" and drag it into the workflow area.
  5. Set the output format to Animated GIF.
  6. Adjust the frame rate — 0.5 seconds per frame works well for most slideshows.
  7. Save the workflow with a memorable name like "Create GIF from Images."

Using the workflow

  1. Select the images you want in Finder (hold to pick multiple).
  2. Right-click → Quick ActionsCreate GIF from Images.
  3. Automator processes the files and saves the GIF to the same folder.

Pro tip: Name your images in order (01.png, 02.png, etc.) so frames appear in the right sequence. Automator processes files alphabetically.

Limitations: Automator's GIF output doesn't let you preview before saving, and fine-tuning frame timing requires editing the workflow. For more control, try the methods below.

Best for: Users who want a free, no-install solution with decent results.

Method 2: PicGIF Lite (Mac App Store, free)

PicGIF Lite is a dedicated GIF maker from photos with more control than Automator. You get frame reordering, speed adjustments, and size options.

How to create a GIF from pictures with PicGIF Lite

  1. Download PicGIF Lite from the Mac App Store.
  2. Launch the app and click Add Photos.
  3. Select your images — drag to reorder them in the timeline.
  4. Set the frame delay (0.2–0.5s is typical for slideshows).
  5. Choose your output size: Original, 320px, 480px, or 640px wide.
  6. Click Create GIF and save.

PicGIF Lite tips

  • Frame order matters. Drag frames in the timeline to rearrange — no need to rename files.
  • Keep it small. For web use, 480px or 640px width keeps file sizes manageable. You can always compress the GIF afterward.
  • Loop settings. The free version loops infinitely by default, which is usually what you want.

Best for: Quick slideshow GIFs with simple drag-and-drop controls.

Method 3: Online tools (ezgif and Kapwing)

No install needed — just a browser. Online images to GIF converters work on any Mac.

ezgif.com

  1. Go to ezgif.com/maker.
  2. Click Choose Files and select your images (up to 2000 files).
  3. Click Upload and make a GIF.
  4. Set delay time, loop count, and frame order.
  5. Click Make a GIF → download the result.

ezgif also lets you resize, crop, and optimize the GIF before downloading. It's one of the most full-featured free options available.

Kapwing

  1. Visit kapwing.com and start a new project.
  2. Upload your images to the timeline.
  3. Adjust duration per frame and arrange the order.
  4. Export as GIF.

Kapwing adds a watermark on the free tier. But the editor is more visual and modern than ezgif. It also supports collaboration, so your team can edit the same project.

Privacy note: Online tools upload your images to external servers. Working with sensitive screenshots? Stick with local methods like Automator, PicGIF, Terminal, or Shortcuts.

Best for: One-off GIFs when you don't want to install anything. Also useful if you need to convert image formats before creating the GIF.

Method 4: Terminal with ImageMagick or ffmpeg (for developers)

Comfortable with the command line? ImageMagick and ffmpeg offer the most control over PNG to GIF and JPG to GIF conversions.

Terminal showing ImageMagick convert command for creating GIFs
Terminal showing ImageMagick convert command for creating GIFs

ImageMagick

Install via Homebrew:

brew install imagemagick

Create a GIF from images:

convert -delay 50 -loop 0 frame1.png frame2.png frame3.png output.gif
  • -delay 50 sets 0.5 seconds between frames (delay is in hundredths of a second).
  • -loop 0 means infinite looping.
  • List files in the order you want them to appear.

For a folder of sequentially named images:

convert -delay 30 -loop 0 -resize 640x frames/*.png slideshow.gif

ffmpeg

Install via Homebrew:

brew install ffmpeg

Create a GIF from a folder of images:

ffmpeg -framerate 2 -pattern_type glob -i '*.png' -vf "scale=640:-1" output.gif
  • -framerate 2 shows 2 frames per second.
  • scale=640:-1 resizes to 640px wide, maintaining aspect ratio.

Optimizing CLI output

GIFs from ImageMagick can be large. Add optimization:

convert -delay 50 -loop 0 frames/*.png -layers Optimize output.gif

Or use gifsicle for further compression:

brew install gifsicle
gifsicle -O3 --lossy=80 output.gif -o optimized.gif

Pro tip: Combine ImageMagick with a shell script to automate GIF creation. Capture a sequence of annotated screenshots, then convert them into a tutorial GIF with a single command.

Best for: Developers, automation scripts, and batch processing. Also great for CI pipelines that generate documentation GIFs automatically.

Method 5: Apple Shortcuts (automation)

Apple Shortcuts lets you build a reusable GIF maker workflow that lives in your menu bar or right-click menu.

Apple Shortcuts app with a GIF creation workflow on Mac
Apple Shortcuts app with a GIF creation workflow on Mac

Building the shortcut

  1. Open Shortcuts (comes pre-installed on macOS Monterey and later).
  2. Click the + button to create a new shortcut.
  3. Add these actions in order:
  • Select Photos (set to "Select Multiple")
  • Make GIF (set seconds per photo — try 0.5)
  • Save File (choose Desktop or a specific folder)
  1. Name it "Images to GIF" and add it to your menu bar.

Using the shortcut

  • Click the shortcut from the menu bar, select your photos, and the GIF saves automatically.
  • You can also trigger it from Finder: right-click selected images → Quick ActionsImages to GIF.

Advanced: Add to Finder right-click menu

  1. In the shortcut settings, enable Use as Quick Action and check Finder.
  2. Now select images in Finder → right-click → Quick ActionsImages to GIF.

Pro tip: Chain Shortcuts with other actions. Add a "Resize Image" step before "Make GIF" to scale images down automatically. Or add "Copy to Clipboard" at the end so the GIF is ready to paste into Slack or Messages.

Best for: Repeat workflows. Build it once, use it from your menu bar or right-click menu forever.

Optimizing your GIF for the web

Raw GIFs from any tool can be huge. We're talking 10MB+ for just a handful of high-res photos. Here's how to keep file sizes reasonable:

OptimizationHowImpact
Reduce dimensionsResize to 640px or 480px wideMajor size reduction
Lower frame countRemove redundant framesFewer frames = smaller file
Increase compressionUse lossy optimization (gifsicle)40-60% smaller
Limit colorsReduce from 256 to 128 or 64 colorsNoticeable savings
Shorten durationKeep GIFs under 5 secondsLess data overall

Aim for under 5MB for web use and under 1MB for email. Most social platforms accept up to 15MB. But smaller loads faster and plays smoother.

For quick compression without installing anything, try our free GIF compressor tool — just drag, drop, and download.

If your GIF is still too large for your use case, consider converting it to MP4 for platforms that support video autoplay.

Best tool for your use case

Comparison of GIF creation tools for Mac
Comparison of GIF creation tools for Mac
MethodEase of UseQuality ControlBest For
Automator⭐⭐⭐⭐⭐Quick, no-install solution
PicGIF Lite⭐⭐⭐⭐⭐⭐⭐⭐Visual drag-and-drop
Online tools⭐⭐⭐⭐⭐⭐⭐One-off GIFs, no install
Terminal (CLI)⭐⭐⭐⭐⭐⭐⭐Developers, batch automation
Shortcuts⭐⭐⭐⭐⭐⭐⭐Repeatable workflows

Our recommendation: Start with Shortcuts if you'll make GIFs regularly — it's built-in, fast, and reusable. Use ImageMagick if you need precise control or automation. Try PicGIF Lite for a one-time visual editor.

For GIFs captured from your screen (demos, tutorials, bug reports), a dedicated tool like ScreenSnap Pro records directly to GIF — no conversion step needed. Check out our guide on how to record GIFs on Mac for that workflow.

Frequently Asked Questions

How do I make a GIF from photos on my Mac for free?

The easiest free method is Apple Shortcuts (macOS Monterey+). Create a shortcut with "Select Photos" → "Make GIF" → "Save File" actions. For older macOS versions, use Automator's Encode Media action or the free PicGIF Lite app from the Mac App Store.

What's the best frame rate for a slideshow GIF?

For photo slideshows, 0.5 to 1 second per frame works well. That's fast enough to keep attention but slow enough to see each image. For step-by-step tutorials, use 1–2 seconds per frame. For animation effects, try 0.1–0.2 seconds.

Can I convert PNG to GIF on Mac without losing quality?

Yes. GIF supports up to 256 colors per frame. Photographic images lose some color depth, but PNG graphics, screenshots, and illustrations convert almost perfectly. For best results, keep your source images at the final output size. This avoids resizing artifacts.

How do I reduce GIF file size after creating it?

Three quick wins. First, resize to a smaller width (640px is usually enough). Second, reduce the color palette from 256 to 128. Third, use lossy compression with gifsicle. You can also try our free GIF compressor for one-click optimization.

What's the difference between images to GIF and video to GIF?

Images to GIF creates an animated slideshow from individual picture files (PNG, JPG, etc.) with a set delay between frames. Video to GIF extracts frames from a video file at a specific frame rate. The result looks the same. But the source material and tools differ. For video conversion, check our MOV to GIF guide.

Morgan
Morgan
Indie Developer

Ready to upgrade your screenshots?

Try ScreenSnap Pro with our 30-day money-back guarantee.

Get ScreenSnap Pro