emcconville / wand

The ctypes-based simple ImageMagick binding for Python
http://docs.wand-py.org/
Other
1.42k stars 199 forks source link

Supported format modes #401

Open OskarPersson opened 5 years ago

OskarPersson commented 5 years ago

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?

emcconville commented 5 years ago

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).