Image with 2 different color profiles #1560
Answered
by
dlemstra
alejandroLoz
asked this question in
Help
-
So I have a "background" image that has an attached color profile: And another "clipart" image with a default sRGB color profile: When I combine them using the following code:
The clipart image ends up with what it looks like the inverted colors: What am I doing wrong? How can I fix it? |
Beta Was this translation helpful? Give feedback.
Answered by
dlemstra
Feb 21, 2024
Replies: 1 comment 4 replies
-
I don't have time to check this properly now but it looks like you are mixing CMYK and sRGB images. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It all depends on what kind of output image you want to have. I suspect that you want to have an CMYK output image looking at your website. You should then change your sRGB image to CMYK with the
TransformColorSpace
method. You can find an example for that in documentation.p.s. There is no need to feel honored as I am one of the few people that can answer your question 😃.