Last active
May 21, 2016 21:59
-
-
Save iberianpig/007d7d9d2b38b86fc831 to your computer and use it in GitHub Desktop.
image_optim option
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
BASE = "image_optim" | |
BASE_OPT = "--allow-lossy --recursive --no-progress" | |
JPEG_OPT = "--jpegrecompress-quality 0 --jpegoptim-max-quality 60" | |
PNG_OPT = "--no-pngout --no-pngcrush --no-optipng --no-advpng --pngquant-quality 20-40" | |
OTHER_OPT = "--gifsicle-level 3 --gifsicle-careful true --no-svgo" | |
image_optim ./* --allow-lossy --recursive --no-progress --jpegrecompress-quality 0 --jpegoptim-max-quality 60 --no-pngout --no-pngcrush --no-optipng --no-advpng --pngquant-quality 20-40 --gifsicle-level 3 --gifsicle-careful true --no-svgo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment