Skip to content

Instantly share code, notes, and snippets.

@edmon1024
Created September 26, 2020 08:26
Show Gist options
  • Save edmon1024/36fa1cc0f9c8242925ebd48ad09ff2d9 to your computer and use it in GitHub Desktop.
Save edmon1024/36fa1cc0f9c8242925ebd48ad09ff2d9 to your computer and use it in GitHub Desktop.
### 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