minetest-mods / xdecor

A decoration mod for Minetest meant to be light, simple and well-featured
Other
29 stars 46 forks source link

Solve iCCP warnings #95

Closed SmallJoker closed 6 years ago

SmallJoker commented 6 years ago

$ mogrify .png $ optipng -o7 -zm1-9 -strip all .png

Old directory size: 202.8 kB New directory size: 42.8 kB

This PR removes in my case all those warnings:

2018-08-03 15:55:54: WARNING[Main]: Irrlicht: PNG warning: iCCP: known incorrect sRGB profile
2018-08-03 15:55:54: WARNING[Main]: Irrlicht: PNG warning: iCCP: known incorrect sRGB profile
...
kilbith commented 6 years ago

No quality loss of course?

SmallJoker commented 6 years ago

There is no quality loss in the textures, but a loss of metadata information due to -strip all. Since the textures are documented and licensed as WTFPL anyway, this metadata is superfluous. In some cases stripping this information reduced the file size by 20% since they are only a few hundred bytes big.

SmallJoker commented 6 years ago

Thank you!