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;
}