環(huán)境 CentOS
安裝命令:
yum install ImageMagick
執(zhí)行命令
find ./ -regex '.*\(jpg\|JPG\|png\|PNG\|jpeg\)' -size +50k -exec convert -resize 50%x50% -quality 75 {} {} \;
- resize 50%x50% 尺寸等比例50%縮小
- quality 75 質(zhì)量
- size +50k 50K以上的
yum install ImageMagick
執(zhí)行命令
find ./ -regex '.*\(jpg\|JPG\|png\|PNG\|jpeg\)' -size +50k -exec convert -resize 50%x50% -quality 75 {} {} \;