Page 1 of 1

Non-verbose version of MagickIdentifyImage?

Posted: 2009-04-01T16:59:17-07:00
by rmagick
A MagickWand API question: If I'm reading the source correctly, the output from MagickIdentifyImage is always the verbose output. Is there a non-verbose version of this method?

Re: Non-verbose version of MagickIdentifyImage?

Posted: 2009-04-01T19:48:17-07:00
by magick
You can always call MagickCore methods from the MagickWand API. Open a file for output and call:
  • Image *image=GetImageFromMagickWand(wand);
    status=IdentifyImage(image,file,MagickFalse);

Re: Non-verbose version of MagickIdentifyImage?

Posted: 2009-04-02T04:26:22-07:00
by rmagick
Thanks. Can do.