tags:

views:

177

answers:

3

Does anyone know of a good explanation of EXIF key names? I am writing a photo organizer and want to get as much information as possible out of the photo as I can.

However, the EXIF key names are not very helpful. For example, from what I can tell (by exporting images from iPhoto)

album or set name is stored as 'fixture_identifier' tags or keywords are stored as either 'keywords' or 'subject'

And so on.

Anyone have some valuable insight in this area?

+1  A: 

All listed here:

http://www.awaresystems.be/imaging/tiff/tifftags/privateifd/exif.html

skaffman
+2  A: 

Here is the list of EXIF tags:

http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/EXIF.html

Thing is that you cannot be sure of what a camera or application will put in each, so you'll have to create code to handle those corner cases (where tags or keywords are in either keywords or subject).

Also, there are maker specific tags, as you can see in the tag id 0x927c, which you should also handle specifically.

Vinko Vrsalovic
exiftool, which this post references, is excellent and provides the most EXIF info I've seen. The supporting documentation is very good too.
Ian Hopkinson
A: 

also here

http://www.exif.org/specifications.html

michele