Skip to content

Instantly share code, notes, and snippets.

@funnyzak
Last active April 12, 2022 05:23
Show Gist options
  • Save funnyzak/d495e817c7e3e1319898687e4f52b8ae to your computer and use it in GitHub Desktop.
Save funnyzak/d495e817c7e3e1319898687e4f52b8ae to your computer and use it in GitHub Desktop.
Convert images to HEIC
# Iterate through the current folder and convert all JPG|JPEG|PNG|BMP format pictures to HEIC format, delete the original files after success
# 遍历当前文件夹,把所有JPG|JPEG|PNG|BMP格式图片转换为HEIC格式,成功后删除原文件
find -E . -iregex ".*\.(jpg|jpeg|png|bmp)" -print | xargs -n1 -I {} sh -c 'echo "Converting \"{}\" to HEIC." && ((magick mogrify -quiet -format HEIC {} && rm {} && echo "success and deleted {}.") || echo "fail.")'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment