vote up 3 vote down star
3

What's the best way to store EXIF data from photos in a Database (MySQL in my case). This is for a photo sharing site.

What are the most important Tags, and what are discardable?

flag

74% accept rate

4 Answers

vote up 7 vote down

It's hard for us to determine what is important for you. One approach might be to store all the properties in a table created something like this (approximate SQL syntax):

create table exif_info (
    photo_id integer,
    name varchar,
    value varchar
);

Each row in this table associates one EXIF property with one photo. So you would need a whole bunch of rows to hold all the EXIF properties for a single photo, but this is exactly what relational databases are good at.

In this way, you can store all the available information without having to decide now what might be important later.

link|flag
1  
Agree that OP must decide which information is important for them. However, disagree with storing the data in name/value pairs. In practice, it's very difficult to create an efficient query like "select all of the photos and their attributes taken with camera X at iso setting Y and focal length between A and B". You're better off with discrete columns for each piece of important information. Name/value pairs will only work for simple queries like "select all of the photo attributes for photo number X". – Convict Jul 1 at 4:06
But different cameras have different EXIF data and can add new data in the future. Can you guess all the future digital camera features that will be tracked by EXIF? – mgb Nov 10 at 18:43
@mgb: No, and the point is you don't need to know all the possible properties ahead of time. Each individual photo can have its own set of properties, independently of any other photo. – Greg Hewgill Nov 10 at 20:19
vote up 2 vote down

For your second question...

Picasa

  • Date and time that the photo was taken
  • Camera make & model
  • Resolution
  • Orientation
  • Focal length
  • Aperture
  • ISO speed
  • GPS latitude and longitude

Flickr

  • Camera
  • Exposure
  • Aperture
  • Focal Length
  • ISO Speed
  • Exposure Bias
  • Flash
link|flag
vote up 0 vote down

EXIF is metadata. Why not use a data format designed from the ground up to deal with metadata? EXIF could be easily put into RDF, which has tons of tools, libraries and storage options.

link|flag
vote up -1 vote down

Actually, I would recommend storing EXIF as a blob (json?) since there is great variability across devices that generate EXIF. It may be easier to pull that as a chuck and then operate on it.

If this is for a photo sharing site, you probably want to store the IPTC info too, probably in the same manner.

See http://bret.appspot.com/entry/how-friendfeed-uses-mysql

link|flag
only if you don't want to search on the EXIF info using SQL. If you want to search on ISO, then you need it in a field of its own. – Val Sep 27 at 0:49
It was not listed as a requirement to search via SQL. I would think for a sufficiently large site that search would be handled by something like Lucene so this would not be an issue. But then again, maybe the OP wants to do selects on ISO... – Jauder Ho Oct 1 at 3:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.