Skip to content

Instantly share code, notes, and snippets.

@BruceWind
Last active December 21, 2022 10:00
Show Gist options
  • Save BruceWind/79d4c5caca2d7046e8216622c3e860bf to your computer and use it in GitHub Desktop.
Save BruceWind/79d4c5caca2d7046e8216622c3e860bf to your computer and use it in GitHub Desktop.
Some trickies about image operation on Mac OS.

handle HEIC format

# brew install magick, at first
# convert a single image
magick convert foo.HEIC foo.jpg

# bulk convert multiple images
magick mogrify -monitor -format jpg *.HEIC

compress jpg&png without quality-lost

# brew install guetzling, at first
cd dir/
guetzling 

guetzling would compress all images from the current folder.

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