Skip to content

Instantly share code, notes, and snippets.

@JesseRWeigel
Created April 28, 2017 19:22
Show Gist options
  • Star 49 You must be signed in to star a gist
  • Fork 14 You must be signed in to fork a gist
  • Save JesseRWeigel/756cc507cbe59084d66e376eaf05c6e9 to your computer and use it in GitHub Desktop.
Save JesseRWeigel/756cc507cbe59084d66e376eaf05c6e9 to your computer and use it in GitHub Desktop.
ImageMagick Compression Commands
// Must install ImageMagick first
http://www.imagemagick.org/script/index.php
//This compresses a jpg with no visible loss of quality. Add in your own file names for target.jpg and result.jpg
convert -strip -interlace Plane -sampling-factor 4:2:0 -quality 85% target.jpg result.jpg
// This does the same as above but to an entire folder (will overwrite original files):
mogrify -strip -interlace Plane -sampling-factor 4:2:0 -quality 85% *.jpg
//This does the same thing but to all subfolders as well (Be careful with this one it will overwrite all original files)
//This one just tests the command and prints output
find . -name "*.jpg" -exec echo
mogrify -strip -interlace Plane -sampling-factor 4:2:0 -quality 85% {} \;
// This one actually compresses all the images in folder and subfolders
(the real thing)
find . -name "*.jpg" -exec mogrify -strip -interlace Plane -sampling-factor 4:2:0 -quality 85% {} \;
// This command compresses a png with no visible loss of quality
mogrify -filter Triangle -define filter:support=2 -unsharp 0.25x0.08+8.3+0.045 -dither None -posterize 136 -quality 82 -define png:compression-filter=5 -define png:compression-level=9 -define png:compression-strategy=1 -define png:exclude-chunk=all -interlace none -colorspace sRGB *.png
These commands were copied or adapted from the following sources:
http://www.imagemagick.org/discourse-server/viewtopic.php?t=24134
http://stackoverflow.com/questions/27267073/imagemagick-lossless-max-compression-for-png
https://sangpo.wordpress.com/2009/01/24/recursive-batch-image-resizing-in-linux/
http://stackoverflow.com/questions/7261855/recommendation-for-compressing-jpg-files-with-imagemagick
@masterwebsk
Copy link

Hi, this is awesome. Tried on sample I saved 75% space.

mogrify -strip -interlace Plane -sampling-factor 4:2:0 -quality 85% *.jpg but there is in folder 82+k files and it return error:
bash: /usr/bin/mogrify: Argument list too long (8cores 32GB RAM, SSD..)
So trying now find . -name "*.jpg" -exec mogrify -strip -interlace Plane -sampling-factor 4:2:0 -quality 85% {} \;

@SaadBazaz
Copy link

Awesome stuff! gg

@JesseRWeigel
Copy link
Author

I didn't realize anyone was even using this. I am so glad it was helpful!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment