您的位置:首页 > 其它

libpng warning: iCCP: known incorrect sRGB profile

2014-04-28 12:39 736 查看
参考 http://www.cocos2d-x.org/forums/6/topics/49093 解决
I got the following warnings in console when running your app that uses cocos2d-x 3.0
convert: iCCP: known incorrect sRGB profile 'flash.png' @ warning/png.c/MagickPNGWarningHandler/1830.


If you get similar warnings, try running the following bash command
find . -type f -name "*.png" -exec convert {} -strip {} \;


This will use ImageMagick to strip and fix all png files (usually Photoshop and some other editors create bad iCCP chunks)

来自为知笔记(Wiz)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐