Skip to content

Instantly share code, notes, and snippets.

@nagae
Created April 10, 2025 02:05
Show Gist options
  • Save nagae/a269c5b62ab688aa41b0474b5a075ebf to your computer and use it in GitHub Desktop.
Save nagae/a269c5b62ab688aa41b0474b5a075ebf to your computer and use it in GitHub Desktop.
同じフォルダにあるHEICファイルをサイズダウンしてjpg化
for file in *.HEIC; do magick "$file" -quality 70 "${file%.*}.jpg"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment