Skip to content

Instantly share code, notes, and snippets.

@vinesmsuic
Created November 10, 2022 04:44
Show Gist options
  • Save vinesmsuic/72f621f8af1977edbf74ecf84de13b31 to your computer and use it in GitHub Desktop.
Save vinesmsuic/72f621f8af1977edbf74ecf84de13b31 to your computer and use it in GitHub Desktop.
Batch convert HEIC to jpg on MacOS
for file in *.HEIC; do
echo "${file%.*}"
convert $file -resize "1920>" -quality 75 "${file%.*}.png"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment