wand
wand copied to clipboard
Supported format modes
I can get the supported formats using wand.version.formats
, but how do I also get the supported mode for each format similar to the output from identify -list format
?
The wand library wraps ImageMagick's MagickWand
library through C-API. The information you would like is only available in MagickCore
library through GetMagickInfoList
method, and not currently extended to MagickWand
(as far as I know).