Skip to content

Instantly share code, notes, and snippets.

@christopherlovell
Created July 8, 2024 17:20
Show Gist options
  • Save christopherlovell/862d0069f5cce0c0a1fd4ec43fb0feac to your computer and use it in GitHub Desktop.
Save christopherlovell/862d0069f5cce0c0a1fd4ec43fb0feac to your computer and use it in GitHub Desktop.
Convert heic files and resize
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