Replies: 1 comment 3 replies
-
I am also getting a great image and I wonder if this was also recently fixed in the jpeg-xl library. I guess we will need to wait for their next release to test this again. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to read this file from JPEG XL conformance tests: https://github.com/libjxl/conformance/blob/a5e01103a2c09b85158638de367387d051474b96/testcases/bench_oriented_brg/input.jxl?raw=true . It's supposed to be red bench image. When I open it with Magick.NET, it's a green bench. I tried to fix it by adding
image.SetProfile(ColorProfile.SRGB);
command, but it seemed to do nothing. Also triedimage.TransformColorSpace(ColorProfile.SRGB); image.Strip();
, which also seems to do nothing.image.GetColorProfile()
returns null.What should I do to open it correctly, so that it's a red bench?
Beta Was this translation helpful? Give feedback.
All reactions