Created
August 15, 2024 20:02
-
-
Save mwender/232ac3dd63e3e3655dd4290238c3260e to your computer and use it in GitHub Desktop.
[Convert .heic to .jpg] MacOS one-liner for converting all .heic files in current directory to .jpg #bash #imageprocessing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for f in *.heic; do sips -s format jpeg -s formatOptions 40 "$f" --out "${f%.heic}.jpg"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment