Last active
October 31, 2018 15:58
-
-
Save mankutila/b1447ddf62ff6c7a892b7d0d16474646 to your computer and use it in GitHub Desktop.
Compress images with ImageMagick on Windows 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FOR %a IN (*.png) DO convert "%a" -strip -depth 24 -define png:compression-filter=2 \ -define png:compression-level=9 -define png:compression-strategy=1 "opt\%a" | |
FOR %a IN (*.jpg) DO convert "%a" -sampling-factor 4:2:0 -strip -quality 85 -interlace JPEG -colorspace sRGB "opt\%a" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment