Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
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:
status = MagickReadImage(Mymagick_wand,imagePath);
if (status == MagickFalse) {
ThrowWandException(Mymagick_wand);
return nil;
}
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