You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PNG assets can be optimized, for example with optipng. I was able to reduce the size by 50% on buttons.png and [email protected], which are loaded for every visitors, without reducing quality. For some other assets, I was able to divide the size by more than 5 (for example /css/images/thumb_horizontal.png) !
It's very simple with optipng (available on every Linux distribution) : optipng -o7 -strip all file.png
and to easily optimize all png in a directory and subdirectories : find /path/to/dir -iname '*.png' -exec optipng -o7 -strip all {} \;
It is a lot of bytes saved for a very small effort :)
Thanks for this amazing plugin !
The text was updated successfully, but these errors were encountered:
Hello,
PNG assets can be optimized, for example with optipng. I was able to reduce the size by 50% on buttons.png and [email protected], which are loaded for every visitors, without reducing quality. For some other assets, I was able to divide the size by more than 5 (for example /css/images/thumb_horizontal.png) !
It's very simple with optipng (available on every Linux distribution) :
optipng -o7 -strip all file.png
and to easily optimize all png in a directory and subdirectories :
find /path/to/dir -iname '*.png' -exec optipng -o7 -strip all {} \;
It is a lot of bytes saved for a very small effort :)
Thanks for this amazing plugin !
The text was updated successfully, but these errors were encountered: