I have a photo community (www.jungledragon.com) that allows users to upload photos. My platform is PHP/CodeIgniter.

As part of the upload process I'm already reading EXIF info using PHP's exif_read_data function, which works fine. I read camera details and show these on an info tab.

On top of that, user's are expected to manually set the photo title, description and tags on the website after uploading the photo. However, some users manage these fields in their image management program, for example Lightroom. It would be great if I could read those as well, uploading would become a total joy.

I already improved my EXIF reading to read the "caption", this way users don't have to set the image title after uploading anymore. Now I'm looking to read keywords, which is where I am stuck. Here's a partial screenshot of an image in Lightroom:

enter image description here

I can read the Metadata, but how do I read the keywords? The fact that it is not inside metadata makes me wonder if it's at all possible? I've tried reading every value I can get (ANY_TAG, IFD0, EXIF, APP12) using exif_read_data, but the keywords are not to be found.

Any thoughts?

link|improve this question

I think you should inspect the images with some other software so that you can rule out any limitations in the php metadata reading. Also, how is LR configured for exporting keywords? see e.g. lightroomsecrets.com/2010/11/keywords-and-exported-images – Anders Forsgren Aug 13 '11 at 21:46
Thanks. I actually downloaded a photo that one user uploaded to my site of which he claimed it has keywords. The screenshot I included shows that same photo imported into LR. I think that verifies that the file contains it? – Ferdy Aug 13 '11 at 22:39
feedback

2 Answers

up vote 1 down vote accepted

As suggested you may have to use another method of reading metadata.

http://www.foto-biz.com/Lightroom/Exif-vs-iptc-vs-xmp

Image keywords may be stored in IPTC and not in EXIF. I don't know if there is a standard platform method for reading iptc but a quick google shows this

http://php.net/manual/en/function.iptcparse.php

link|improve this answer
Thanks, very useful. Will give this a try and report back soon. – Ferdy Aug 15 '11 at 8:04
It works :) The official example of the iptcparse function gave me the results I needed instantly. Thanks so much! – Ferdy Aug 15 '11 at 12:50
feedback

Try using PEL, a much more comprehensive library than exif_read_data() for exif data.

link|improve this answer
Thanks for the suggestion, but can PEL be installed without command line? The reason I ask is because of my host. – Ferdy Aug 13 '11 at 22:18
I had the same problem, so I just downloaded the source, and uploaded it to somewhere on my server. – r0nny1l Aug 14 '11 at 9:10
feedback

Your Answer

 
or
required, but never shown

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