我试图调整大于10 mb的图像。
这是我的imagemagick突击队:
convert -strip -interlace Plane -resize 70% -quality 80% file.jpg file.jpg
有人可以向我解释我如何循环文件夹中大于10mb的图片吗?
答案 0 :(得分:2)
使用find:
find /your/path/here -name '*.jpg' -size +10M -exec convert -strip -interlace Plane -resize 70% -quality 80% {} {} \;
这将查找大于10兆字节且名称以.jpg
结尾的所有文件,并对其执行命令。 {}
是占位符,表示当前文件的名称。