Replies: 1 comment 10 replies
-
byte[] iccData = File.ReadAllBytes("GREEN_TINT.icm");
image.Metadata.IccProfile = new IccProfile(iccData);
image.Save(...); Does this achieve what you need? |
Beta Was this translation helpful? Give feedback.
10 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.
-
Hello,
I apologise if this has already been covered but I have an ICM colour profile at
C:\\Users\\NAME\\Pictures\\_temp\\GREEN_TINT.icm
that makes the image green (just a testing ICM) and I would like to apply that ICM profile to my image.Any help on how to apply an ICM file to an image and have that reflect in the image when I
Image.Save
would be massively appreciated.I'm using
C# .NET6
usingSixLabors v2.1.3
Kind Regards,
Theo
Beta Was this translation helpful? Give feedback.
All reactions