Hi,
Is it possible to get a list of the names of all possible metadata properties (exif, iptc, ...) that may be stored in an image file?
I'm looking at changing from the metadata toolkit we are using to ImageMagick, and I need to map their property names to those used in ImageMagick.
Cheers, Matt.
List of all property names
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: List of all property names
My understanding is that
will list all meta data that IM has collected. But you likely will get more information from EXIFTOOL
Code: Select all
identify -verbose image
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: List of all property names
For the descriptions that IM will use for EXIF tags, see property.c function GetEXIFProperty() structure EXIFTag[].
snibgo's IM pages: im.snibgo.com
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: List of all property names
There is likely a similar structure in property.c for IPTC.snibgo wrote:For the descriptions that IM will use for EXIF tags, see property.c function GetEXIFProperty() structure EXIFTag[].
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: List of all property names
There isn't in property.c. I think IPTC data is lifted as-is from embedded XMP, ie it isn't translated.
snibgo's IM pages: im.snibgo.com
Re: List of all property names
Brilliant - thank you! Just the translatable ones will be sufficient for me.
Cheers, Matt.
Cheers, Matt.