KOBUGE-Games / jetpaca

Game about the rocket alpaca (KOBUGE continuation fork)
MIT License
58 stars 16 forks source link

Optimize PNG images using oxipng #27

Closed aaronfranke closed 4 years ago

aaronfranke commented 4 years ago

Total repo size before: 52.4 MB, total repo size after: 49.7 MB (a reduction of 5%). Just the PNG images had a reduction of about 10% (so about half the repo by file size is PNG images).

The exact command used is find . | grep "\.png" | xargs ~/.cargo/bin/oxipng -o6 --strip all --zopfli

akien-mga commented 4 years ago

Thanks!