How to Convert HEIC to JPG on Mac

Updated April 2026

Quick Answer

The fastest way: open our free HEIC converter, drag and drop your HEIC files, and download JPGs.

Method 1: Online Converter (Recommended)

  1. Open ConvertHEIC.org in Safari, Chrome, or Firefox
  2. Drag and drop HEIC files onto the upload area
  3. Click Convert and download JPG files

Files are processed locally in your browser.

Method 2: Preview App

  1. Open HEIC file in Preview (double-click in Finder)
  2. Go to File then Export
  3. Select JPEG from Format dropdown
  4. Click Save

Only works for one file at a time.

Method 3: Terminal (sips)

Use the built-in sips command:

sips -s format jpeg input.heic --out output.jpg

Why Mac Users Need to Convert

macOS has supported HEIC natively since macOS High Sierra (10.13), so your Mac can open, display, and edit HEIC files without any extra software. However, native support does not mean universal compatibility — and that gap creates real friction in everyday workflows.

Common scenarios where Mac users need to convert HEIC to JPG:

  • Sharing with Windows colleagues — HEIC is unreadable on Windows without a paid codec. Emailing HEIC files to Windows users often results in "cannot open" errors.
  • Web uploads — Many CMS platforms, e-commerce backends, and form builders reject HEIC. WordPress, Squarespace, and Shopify historically had inconsistent HEIC support.
  • Older Adobe software — Photoshop CS6 and older Lightroom versions do not read HEIC. Even newer versions can be slow to open large HEIC files compared to JPEG.
  • Client deliverables — Photographers delivering final images to clients almost always use JPG or TIFF, never HEIC, for maximum recipient compatibility.
  • Printing services — Online print labs and kiosk printers uniformly expect JPG or PNG. Submitting HEIC typically results in an error or a blank print.

In short: even though your Mac handles HEIC fine, the moment your files leave the Apple ecosystem you need JPG. Converting proactively saves headaches later.

Method 4: Use sips Command in Terminal (Detailed)

sips (Scriptable Image Processing System) is a command-line tool built into every Mac. It requires no installation and can convert a single file or an entire folder in seconds.

Convert a single file:

sips -s format jpeg photo.heic --out photo.jpg

Convert all HEIC files in a folder:

for f in ~/Pictures/*.heic; do

sips -s format jpeg "$f" --out "${f%.heic}.jpg"

done

This loop finds every .heic file in your Pictures folder and saves a converted.jpg next to it, leaving the originals untouched.

Control output quality:

sips -s format jpeg -s formatOptions 85 photo.heic --out photo.jpg

Replace 85 with any value from 0–100. Values of 80–92 give excellent quality with significant file size savings. The default when omitted is best quality (equivalent to ~100).

No Homebrew or third-party tools needed — sips is pre-installed on all Macs.

Method 5: Use ImageMagick for Batch Conversion

ImageMagick is a powerful open-source image processing suite. It handles batch conversions, image resizing, watermarking, and more. Install it via Homebrew:

brew install imagemagick

Convert a single file:

magick photo.heic photo.jpg

Batch convert all HEIC in current directory:

magick mogrify -format jpg *.heic

mogrify converts files in-place by default. Add -path ./output/ to save JPGs into a subfolder and preserve the originals:

mkdir output

magick mogrify -format jpg -path ./output/ *.heic

Resize while converting (useful for web):

magick mogrify -format jpg -resize 1920x1080 -path ./output/ *.heic

ImageMagick is ideal when you need conversion combined with resizing or other transformations in one pass.

Automator Quick Action Setup (Detailed)

Automator lets you create a right-click context menu action in Finder so you can convert HEIC files without opening any app or terminal. Once set up, it takes two clicks from anywhere in Finder.

Step 1: Open Automator

Open Automator from Applications (or Spotlight). Choose New Document, then select Quick Action as the document type.

Step 2: Configure the workflow input

At the top of the workflow panel, set:

  • Workflow receives current: image files
  • in: Finder

Step 3: Add a "Change Type of Images" action

  1. In the left Actions panel, search for "Change Type of Images"
  2. Drag it into the workflow area on the right
  3. When prompted, click Add to add a "Copy Finder Items" action before it (this preserves originals)
  4. Set the destination folder for copies (e.g., your Desktop or a "Converted" folder)
  5. In the "Change Type of Images" action, select JPEG from the dropdown

Step 4: Save the Quick Action

Press Cmd+S and name it something like "Convert to JPG". Automator saves it automatically to the correct system location.

Step 5: Use it in Finder

  1. Select one or more .heic files in Finder
  2. Right-click and choose Quick Actions > Convert to JPG
  3. Converted JPG files appear in the destination folder you configured

This method is excellent for recurring use. You can also assign a keyboard shortcut to the Quick Action via System Settings > Keyboard > Keyboard Shortcuts > Services.

Convert HEIC to JPG Now

Related Guides