Created
May 16, 2017 10:17
-
-
Save rkbhochalya/d3557a9d122ab547c040af3adbd565c2 to your computer and use it in GitHub Desktop.
Recursively optimize PNG and JPEG images using convert command
This file contains 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
# Recursively optimize PNG and JPEG images using convert command | |
# | |
# `convert` is part of ImageMagick (http://www.imagemagick.org/). You will need to install it first. | |
# | |
# Author: Rajendra Kumar Bhochalya (http://rkb.io) | |
# | |
# @see https://developers.google.com/speed/docs/insights/OptimizeImages | |
# Optimize all JPEG images in current directory and subdirectories | |
find . -name "*.jpg" -exec convert "{}" -sampling-factor 4:2:0 -strip -quality 85 -interlace JPEG -colorspace RGB "{}" \; -exec echo "{}" \; | |
# Optimize all PNG images in current directory and subdirectories | |
find . -name "*.png" -exec convert "{}" -strip "{}" \; -exec echo "{}" \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment