Created
September 26, 2020 08:26
-
-
Save edmon1024/36fa1cc0f9c8242925ebd48ad09ff2d9 to your computer and use it in GitHub Desktop.
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
| ### Optimizing jpeg and png images | |
| ##### Dependency used jpegoptim and pngquant | |
| ``` | |
| $ apt install -y jpegoptim pngquant | |
| ``` | |
| ##### JPEG image optimization example with quality percentage (-n >> review without conversion ) | |
| jpegoptim -m 75 image.jpg | |
| jpegoptim -m 75 -n image.jpg | |
| ##### PNG image optimization example with conversion quality range | |
| pngquant --quality=80-85 image.png | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment