Linux 批量无损压缩图片

来自:互联网
时间:2020-03-22
阅读:

安装JPG和PNG压缩

yum install jpegoptim
yum install optipng

然后在需要压缩的目录下执行如下命令进行压缩jpg格式的图片

//压缩JPG
find . -name '*.jpg' | xargs jpegoptim --strip-all
//压缩PNG
find -type f -name "*.png" -exec optipng {} ;

参考

返回顶部
顶部