Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 555 Bytes

convert-heic-images-to-another-format.md

File metadata and controls

23 lines (14 loc) · 555 Bytes

Convert HEIC Images To Another Format

Category: Mac

The Preview application can be used to convert HEIC images from one format to another.

You can also convert images to JPEG or PNG format from the command line using the ImageMagick Mogrify utility.

This TIL assumes you have already installed brew.

Install dependencies using brew:

brew install imagemagick

Convert all HEIC images in the current directory to JPG/JPEG as follows:

mogrify -format jpg *.heic

Change the target image format to match your needs.