Page 1 of 1

MagickWand API - identify image - suggestion

Posted: 2007-09-06T14:23:47-07:00
by mkoppanen
It would be nice to have a function in the MagickWand API to return identify attributes in some associative container(s).

something like:

properties
|
|
+-EXIF
| |_ Make=Camera manufacturer
| |_ FooBar=Barfoo
| |_ AndSoOn=value
|
+-Dimensions
| |_ Height=640
| |_ Width=480
|
+...

My ascii presentation is not pretty but I hope you get the point :)

Re: MagickWand API - identify image - suggestion

Posted: 2007-09-06T15:35:16-07:00
by magick
You can use MagickGetImageProperty() to return the value of a particular property. What is needed is a MagickGetImageProperties() method so you know which properties are available for a particular wand. We'll get that method into ImageMagick 6.3.5 Beta within a day or two.

Re: MagickWand API - identify image - suggestion

Posted: 2007-09-07T05:38:38-07:00
by mkoppanen
magick wrote:You can use MagickGetImageProperty() to return the value of a particular property. What is needed is a MagickGetImageProperties() method so you know which properties are available for a particular wand. We'll get that method into ImageMagick 6.3.5 Beta within a day or two.
That would be excellent! Thank you!