Skip to content

Instantly share code, notes, and snippets.

@pajcho
Last active January 24, 2022 21:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pajcho/bd7c9a738e105b7093643cbfff7f7081 to your computer and use it in GitHub Desktop.
Save pajcho/bd7c9a738e105b7093643cbfff7f7081 to your computer and use it in GitHub Desktop.
Convert HEIC to JPG

https://blog.wplauncher.com/convert-heic-to-jpg-on-mac/

Duplicate Photo Finder

https://macpaw.com/download/gemini

Install imagemagick using homebrew

brew install imagemagick

Convert an HEIC image to a jpg image

magick convert example_image.HEIC example_image.jpg

Convert any HEIC image in a directory to jpg format

magick mogrify -monitor -format jpg *.heic

Convert all images in all subdirectories recursively

find . -name '*.heic' -exec magick mogrify -monitor -format jpg *.heic {} +

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment