I'm seeing this error message pop up every time I open PlayOnLinux. This apparently is a known issue. However, I didn't run into it until I upgraded to Fedora 20 Heisenbug yesterday (it worked fine on Fedora 19 Schrodinger's Cat).
According to several sources on the web, it is caused by the new version of libpng.so actually checking the PNG files and popping a warning when they have an incorrect sRGB profile specified in the file header. Evidently, POL uses a number of PNGs which suffer from this problem (why POL haven't fixed this yet is a topic for another discussion).
Anyway, the message is just a warning, and POL will continue working just fine. The message is, however, annoying. To get rid of it, simply do the following:
The above code should work for pretty much any linux distro with POL installed, provided you ALSO have ImageMagick installed (convert is part of the ImageMagick suite of tools). On Fedora 20, it is already installed by default. I lifted the above code from here, which has some other interesting info.
According to several sources on the web, it is caused by the new version of libpng.so actually checking the PNG files and popping a warning when they have an incorrect sRGB profile specified in the file header. Evidently, POL uses a number of PNGs which suffer from this problem (why POL haven't fixed this yet is a topic for another discussion).
Anyway, the message is just a warning, and POL will continue working just fine. The message is, however, annoying. To get rid of it, simply do the following:
Code:
su
cd /usr/share/playonlinux/
for i in `find . | grep .png`; do convert "$i" -strip "$i"; done;
The above code should work for pretty much any linux distro with POL installed, provided you ALSO have ImageMagick installed (convert is part of the ImageMagick suite of tools). On Fedora 20, it is already installed by default. I lifted the above code from here, which has some other interesting info.