所有匹配主题的 Gist image

airikr / Compress images

0 喜欢
0 派生
1 文件
最后活跃于 5 days ago
Use this command to compress an image and strip all metadata from it.
1 function reduceimage {
2 magick "$1" \
3 -resize "${2:-2000}x${2:-2000}>" \
4 -strip \
5 -quality 45 \
6 -define webp:lossless=false \
7 "${1%.*}-r.webp"
8 }
上一页 下一页