使用GraphicsMagick/ImageMagick批量对图片瘦身

GrahpicsMagick:
find . -iname "*.jpg" -exec gm convert -strip +profile "*" -quality 65 {} {} \;
​
ImageMagick:
find . -iname "*.jpg" -exec convert -strip +profile "*"  -quality 65 {} {} \;​

 

posted @ 2015-11-09 09:58  archoncap  阅读(413)  评论(1)    收藏  举报