Created
April 10, 2025 02:05
-
-
Save nagae/a269c5b62ab688aa41b0474b5a075ebf to your computer and use it in GitHub Desktop.
同じフォルダにあるHEICファイルをサイズダウンしてjpg化
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 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