Lossless compression of PNG images on Mac using OptiPNG.
Installing OptiPNG
brew install optipng
Lossless compression of PNG files
I use it with only the —strip all option to remove all metadata.
optipng --strip all sample.png
Batch lossless compression of PNG files in the current directory
find . -name '*.png' | xargs optipng -strip all
Reference Information
- OptiPNG Home Page
- OptiPNGでPNG形式の画像をロスレス圧縮・軽量化する - 技ログ
- PNG画像の圧縮にOptiPNGとZopfli圧縮を導入 | iconDecotter-Log
- OptiPNGにメタデータ削除機能が付いた - Weblog - Hail2u.net
That’s all from the Gemba.