1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-19 20:02:10 +00:00

Web Best Practices: add more image optim tools

This commit is contained in:
Rohan Kumar 2024-04-20 18:30:20 -04:00
parent 35af0034c6
commit aeffae75dd
No known key found for this signature in database
GPG key ID: 1E892DB2A5F84479
2 changed files with 13 additions and 1 deletions

View file

@ -916,7 +916,13 @@ This behavior is particularly frustrating on long pages. Imagine if pressing Tab
Some image optimization tools I use:
=> https://pngquant.org pngquant
lossy PNG compression. Can reduce the size of the color palette.
Lossy PNG compression. Can reduce the size of the color palette.
=> https://www.lcdf.org/gifsicle/ gifsicle
Optimizes GIF images, static or animated. Supports many dithering options and advanced optimization options for animations.
=> https://github.com/makew0rld/didder didder
Offers more advanced dithering options than gifsicle and pngquant.
=> https://github.com/shssoichiro/oxipng Oxipng
Lossless PNG compression. It's like a parallelized version of OptiPNG that also supports an implementation of ZopfliPNG compression

View file

@ -988,6 +988,12 @@ Some image optimization tools I use:
[`pngquant`](https://pngquant.org)
: lossy PNG compression. Can reduce the size of the color palette.
[`gifsicle`](https://www.lcdf.org/gifsicle/)
: Optimizes GIF images, static or animated. Supports many dithering options and advanced optimization options for animations.
[`didder`](https://github.com/makew0rld/didder)
: Offers more advanced dithering options than gifsicle and pngquant.
[`oxipng`](https://github.com/shssoichiro/oxipng)
: Lossless PNG compression. It's like a parallelized version of [OptiPNG](http://optipng.sourceforge.net/) that also supports an implementation of [ZopfliPNG](https://github.com/google/zopfli/blob/831773bc28e318b91a3255fa12c9fcde1606058b/README.zopflipng) compression