Contrast Issue with DICOM format to jpeg
Posted: 2010-07-21T13:00:56-07:00
Hello:
I am trying to read dcm format and write it to jpeg using imagemagick 6.5.3.
It successfully convert the image, but the result is different from the original image. Please download the dcm and jpeg result here:
http://theseconddot.com/tmp/image.zip
here is just pure reading and writing
and i simply use MagickWriteImage to write the image. Any idea on this will be really helpful. I'm pretty new to imagemagick but starting to like it a lot 
I am trying to read dcm format and write it to jpeg using imagemagick 6.5.3.
It successfully convert the image, but the result is different from the original image. Please download the dcm and jpeg result here:
http://theseconddot.com/tmp/image.zip
here is just pure reading and writing
Code: Select all
status = MagickReadImage(Mymagick_wand,imagePath);
if (status == MagickFalse) {
ThrowWandException(Mymagick_wand);
return nil;
}
