Goglides Dev 🌱

Cover image for Convert a HEIC image to JPEG in macOS
Balkrishna Pandey
Balkrishna Pandey

Posted on

Convert a HEIC image to JPEG in macOS

To effortlessly convert HEIC images to JPEG format, utilizing ImageMagick is a straightforward solution. Follow the steps outlined below for a seamless conversion process:

Installation of ImageMagick:

First, ensure ImageMagick is installed on your system. You can easily install it using Homebrew with the following command:

brew install imagemagick
Enter fullscreen mode Exit fullscreen mode

Converting a Single Image:

To convert an individual HEIC image to JPEG, use the following command. Replace source.HEIC with the name of your source file and final.jpg with your desired output file name.

magick convert source.HEIC final.jpg
Enter fullscreen mode Exit fullscreen mode

Bulk Conversion of Multiple Images:

If you need to convert several HEIC images to JPEG simultaneously, ImageMagick facilitates this process efficiently. The command below will convert all HEIC images in the current directory to JPEG, displaying progress as it works through the files:

magick mogrify -monitor -format jpg *.HEIC
Enter fullscreen mode Exit fullscreen mode

Top comments (0)