I kan load/read a raw RGB pixel array into a MagickImage.
PixelStorageSettings pixelStorageSettings = new PixelStorageSettings(100, 100, StorageType.Short, PixelMapping.BGR); var colorImage = new MagickImage(myImageDataByteArray, pixelStorageSettings);
I have some RGB images with no gamma applied. When I try to read the images like this
PixelStorageSettings pixelStorageSettings = new PixelStorageSettings(100, 100, StorageType.Short, PixelMapping.BGR); var colorImage = new MagickImage(myImageData, pixelStorageSettings);