Post

Convert HEIC to JPG on macOS: Terminal & GUI Options

Learn how to convert HEIC images to JPG on macOS using Terminal tools like `sips` and ImageMagick, or via Finder’s built-in Quick Actions.

Convert HEIC to JPG on macOS: Terminal & GUI Options

macOS often saves photos in the HEIC format by default, especially from iPhones. While efficient, HEIC isn’t always compatible with all platforms. If you need to convert HEIC files to JPG, macOS offers multiple options—no third-party software required (unless you want advanced features).

Here’s how to do it via Terminal or Finder:


1. Using sips (Built-in macOS Tool)

sips is a command-line utility pre-installed on macOS that allows for quick and efficient format conversions.

Convert a single HEIC to JPG:

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

Batch convert all HEIC files in a folder:

1
2
mkdir Converted
for i in *.heic; do sips -s format jpeg "$i" --out "Converted/${i%.*}.jpg"; done

Result: All .heic images are saved as .jpg in a new Converted folder.


2. Using ImageMagick (For Advanced Users)

If you need more processing power or flexibility, ImageMagick supports HEIC conversion—provided it’s installed with the right codecs.

Install ImageMagick with Homebrew:

1
brew install imagemagick

Convert a single file:

1
magick convert input.heic output.jpg

Batch convert all HEICs in a directory:

1
magick mogrify -format jpg *.heic

Converts .heic files in-place to .jpg.


3. Using Finder Quick Actions (No Terminal Needed)

For those who prefer a graphical approach:

  1. Select your .heic images in Finder.
  2. Right-click → Quick ActionsConvert Image.
  3. Choose JPEG and preferred image size.
  4. Click Convert.

The JPG files will appear alongside the originals.


Summary Table

MethodRequires InstallBatch ConversionEase of Use
sips (Terminal)NoSimple & Built-in CLI
ImageMagick (Terminal)Yes (via Homebrew)Advanced CLI Tool
Finder Quick ActionsNo✅ (Multi-select)Easiest GUI Option

Conclusion

For quick one-off conversions, sips is the best built-in tool via Terminal. If you need more control or image manipulation features, ImageMagick is worth installing. Prefer not to touch Terminal? Finder’s Quick Actions provide a fast, user-friendly alternative.

Whichever method you choose, converting HEIC to JPG on macOS is both flexible and hassle-free.

☕ Support My Work

If you found this post helpful and want to support more content like this, you can buy me a coffee!

Your support helps me continue creating useful articles and tips for fellow developers. Thank you! 🙏

This post is licensed under CC BY 4.0 by the author.