libpng-warning-iccp-known-incorrect-srgb-profile 警告问题

来源:互联网 发布:罗马军团 知乎 编辑:程序博客网 时间:2024/05/13 12:49

Libpng-1.6 is more stringent about checking ICC profiles than previous versions. You can ignore the warning. To get rid of it, remove the iCCP chunk from the PNG image.

Some applications treat warnings as errors; if you are using such an application you do have to remove the chunk. You can do that with any of a variety of PNG editors such as ImageMagick'sconvert in.png out.png.

To remove the invalid iCCP chunk from all of the PNG files in a folder (directory), you can use ImageMagick'smogrify *.png, provided that your ImageMagick was built with libpng16 (runconvert -list format | grep PNG to be sure of that).

If you'd like to find out which files need to be fixed instead of blindly processing all of them, you can run mypngcrush -n -q *.pngwhere the "-n" means don't rewrite the files and "-q" means suppress most of the output except for warnings. Sorry, there's no option yet in pngcrush to suppress everything but the warnings.


Binary Releases of ImageMagick are here


For Android Projects (Android Studio) navigate into res folder.

For example:C:\AndroidProjects\{your_project_folder}\app\src\main\res\drawable-hdpi\mogrify *.png


参照上面语句把Png 格式处理一下就可以了



阅读全文
0 0
原创粉丝点击