airikr / Compress images

Last active 3 months ago

Like 0

Use this command to compress an image and strip all metadata from it.

airikr revised this gist 4 months ago · 487e17d

1 file changed, 8 insertions

gistfile1.txt (file created)
@@ -0,0 +1,8 @@
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 + }