Replies: 2 comments
-
This is happening due to auto brightness in the libraw library that is being used. You can disable that like this: var readSettings = new MagickReadSettings
{
Defines = new DngReadDefines
{
DisableAutoBrightness = true,
},
};
using (MagickImage magickimage = new MagickImage(@"D:\Образцы raw файлов\IMG_0028.cr2", readSettings)) |
Beta Was this translation helpful? Give feedback.
0 replies
-
I had the same problem, but i use like this: var readSettings = new MagickReadSettings
{
Defines = new DngReadDefines
{
UseAutoWhitebalance = true, //you can try which one is better.
UseCameraWhitebalance = true, //you can try which one is better.
},
};
using (var image = new MagickImage("your CR2 file", readSettings)) Then the color of the output picture is normal |
Beta Was this translation helpful? Give feedback.
0 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.
-
Hello, everybody!
Thank you a lot to those who contributes for a great ImageMagick!
My name is Vladimir.
I have some issue while converting raw files (cr2, raf) to tiff or jpg.
Here is a simple code, nothing special:
I always get yellowish result…
I have tried different versions of Magick.NET-Q16-AnyCPU (7.23.3, 7.22.3, 7.14.4) and settings but they cannot remove this yellowish color.
What could be a problem?
I have attached raw files and also original and result snapshots:
Files.zip
Thanks for any help in advance!
P.S. Console application ImageMagick from: https://imagemagick.org also produces yellowish result.
If I use app called RawTherapee, then everything is ok.
Beta Was this translation helpful? Give feedback.
All reactions