博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
libpng warning: iCCP: known incorrect sRGB profile
阅读量:4569 次
发布时间:2019-06-08

本文共 521 字,大约阅读时间需要 1 分钟。

参考    解决

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)

转载于:https://www.cnblogs.com/iiixxxiii/p/5d593f359345a8d750687db6e5b56a6e.html

你可能感兴趣的文章
抽象类及抽象方法
查看>>
Canvas基本绘画学习
查看>>
要习惯用vector代替数组
查看>>
Django ORM 最后操作
查看>>
HDU 1050(贪心)
查看>>
java设计模式之代理模式
查看>>
spring心得2--bean的生命周期@Spring监听器的作用@Spring初始化容器案例分析@web项目使用...
查看>>
顺序栈
查看>>
Glut,程序的基本架构
查看>>
WebStorm使用快速入门
查看>>
Rsync详解
查看>>
【每日一读】Java编程中“为了性能”尽量要做到的一些地方
查看>>
什么是内网、什么是公网、什么是NAT
查看>>
【堆/排序】堆排序的两种建堆方法
查看>>
类的内置方法
查看>>
项目中使用的第三方开源库
查看>>
[idasheng.cn]准备工作
查看>>
Chrome浏览器之 webdriver(Chrome version must be >= 63.0.3239.0)
查看>>
NOIP2009 潜伏者
查看>>
本地预览的vue项目,在githubpage静态展示
查看>>