Created
January 13, 2016 10:18
-
-
Save tenphi/094e7c35320b93547b68 to your computer and use it in GitHub Desktop.
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
# install dependecies | |
brew install imagemagick jpegoptim pngquant | |
# download images | |
mkdir images | |
cd images | |
wget https://example.com/test_image_01.jpg | |
wget https://example.com/test_image_02.jpg | |
wget https://example.com/test_image_03.jpg | |
wget https://example.com/test_image_01.png | |
wget https://example.com/test_image_02.png | |
wget https://example.com/test_image_03.png | |
# resize (1024x1024 - maximum size of image) | |
mogrify -resize 1024x1024\> * | |
# jpeg (85 - quality) | |
jpegoptim -m85 *.jpg | |
# png (32 - number of colors) | |
pngquant 32 *.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment