optipng
will dramatically reduce app size which will leads to a better user experience specially when downloading the app.
Depending on the image, optimization might change the image to a simple format which should lead to faster load times. (Example: from 4x8 bits/pixel, RGB+alpha to 8 bits/pixel)
Install optipng
brew install optipng
Using optipng
Optimize all images found in current directory and subdirectories.find . -type f -iname *.png -print0 | xargs -0 optipng
- Optimize jpg and png in linux (Japanese): 画像ファイル(jpg, png)のサイズをまとめて最適化する on Linux
0 comments :
Post a Comment