Skip to content

Instantly share code, notes, and snippets.

@mankutila
Last active October 31, 2018 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mankutila/b1447ddf62ff6c7a892b7d0d16474646 to your computer and use it in GitHub Desktop.
Save mankutila/b1447ddf62ff6c7a892b7d0d16474646 to your computer and use it in GitHub Desktop.
Compress images with ImageMagick on Windows 10
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