Page 1 of 1

How to detect supported image formats

Posted: 2007-03-28T17:43:49-07:00
by Matthew Ratzloff
What's the equivalent of this command

Code: Select all

identify -list format
in MagickWand for PHP? It would be great if MagickGetSupportedFormats() returned an array of supported types on the user's system, something like

Code: Select all

array(
    'ART' => MW_Readable,
    'AVI' => MW_Readable,
    'AVS' => MW_Readable | MW_Writable,
    // etc.
)