Dirk Lemstra
Dirk Lemstra
What is the format of your `Image`? I suspect it is a format that is not recognized by Magick.NET by the header of the image data. Can you share a...
That it the same trick as that I am using in the `Bitmap` constructor but we could probably do this a lot more efficient by copying the pixels. Will take...
ImageMagick uses the `C` `API` of the exr library. This only supports reading `ImfHalf` pixels where we get an `unsigned short` value per channel. And this means that the image...
What happens when you use the `Depth` property instead @manjunthcm? And not sure how your question is related to this issue. Next time it might be better to start a...
That is the correct assumption.
It is not consistent because you are using the Q16 version of Magick.NET. It will calculate the minimum depth that is required for one of the specified channels. When it...
Normally ImageMagick is run on the command line as an executable and the time limit can be used to make the program exit when it runs to long. I will...
Do you also have a smaller test image that contains EXIF information that I could use in a unit test if this turns out to be a bug? Max 1mb?...
`image.GetExifProfile()` does not return null with that test image (33806218-0fa8bb00-ddc5-11e7-8ba1-ac5c30401e63.jpg)?
It should work with PNG and TIF as long as they have an exif profile. I did some research and it turns out we don't read the EXIF data when...