I am stumped. How do I read a grayscale 8bit raw image and convert to lossless JPEG? This the code I have to read the raw image, but it is failing with a runtime exception of ImageMagick.MagickMissingDelegateErrorException
MagickReadSettings settings = new MagickReadSettings();
settings.Width = 1000;
settings.Height = 800;
MagickImage image = new MagickImage("c:/users/rfonseka/desktop/image.raw", settings);
I am not sure how to convert it to JPEG2000 lossless format. I want to convert it in memory so I can output the bytes out to HTTP.