Created
July 8, 2024 17:20
-
-
Save christopherlovell/862d0069f5cce0c0a1fd4ec43fb0feac to your computer and use it in GitHub Desktop.
Convert heic files and resize
This file contains 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 filename in IMG_38*; do heif-convert $filename ${filename}.png; done | |
for filename in IMG_38*.png; do mogrify -resize 50% $filename; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment