I’m trying to display this image with a meshBasicMaterial in this minimal demo (r155), but the colors are too pale when I don’t set the texture colorSpace, and too dark when I set it to THREE.SRGBColorSpace.
This post may help understanding changes that happened in latest releases - r125 is quite an old version of three, updating the example to r155 will require you to use colorSpace instead of encoding for textures and render targets / output.
Thanks for your reply.
I’m already familiar with the post you shared though.
I don’t know if you checked my demo, but I’m using colorSpace, not encoding, so that doesn’t answer my question, but thanks for trying to help!
(Also, I’m well aware that r125 is outdated; I merely used it as a reference because the colors were accurate there. I could also use the three.js editor since the colors are correct there as well, but I’m unsure which version it’s based on.)
r125 and earlier versions set UNPACK_COLORSPACE_CONVERSION_WEBGL to BROWSER_DEFAULT_WEBGL which means embedded ICC profiles in images where honored. With r126, the configuration parameter was set to NONE to disable this behavior.
We wanted to stick to the glTF standard which states that any colorspace information (such as ICC profiles, intents, etc) from PNG or JPEG containers must be ignored. This was the motivation why the default of UNPACK_COLORSPACE_CONVERSION_WEBGL was changed globally.
The source image uses the “ProPhoto RGB” wide gamut color space. It appears the web browser is able to do a lossy unpacking to sRGB, which (in older three.js versions) mapped the original wider gamut into sRGB, losing any data outside the smaller sRGB gamut. Now the wide-gamut data is treated as if it were already in sRGB, which results in the colors appearing muted.
I think our default is still OK, and that we cannot yet trust the browser or the source images to identify color spaces correctly. It’s very common to find non-color textures like normal maps, with an embedded ICC profile claiming otherwise. And in any case we need for texture.colorSpace to identify the color space correctly, which automatic browser inference would complicate.
I agree we’ll want the ability to enable unpack color space conversion, at least internally, as we begin to support wide gamut output color spaces. I’m not sure yet what that should look like, but we may not need a new property. Probably we can just look for the texture.colorSpace property, and if it uses a different gamut than ColorManagement.workingColorSpace, we enable unpack colorspace conversion. Examples that would require conversion:
In each case we unpack into the working color space gamut.
This should avoid breaking changes for existing scenes, but does mean that any users trying to get wide gamut rendering will need to be very careful about assigning texture.colorSpace correctly, AND using the matching ICC profile in their textures.
So if I understand correctly, if my image uses a wide gamut color space, the only solution for now would be to convert the image to sRGB (with Photoshop for instance).
It makes more sense to me now, and according to the test I just did, it works.
Thank you guys!