vote up 4 vote down star
1

Is it possible, in an iPhone app, to extract location information (geocode, I suppose it's called) from a photo taken with the iPhone camera?

If there is no API call to do it, is there any known way to parse the bytes of data to extract the information? Something I can roll on my own?

flag

2 Answers

vote up 2 vote down check

Unfortunately no.

The problem is thus;

A jpeg file consists of several parts. For this question the ones we are interested in are the image data and the exif data. The image data is the picture and the exif data are where things like geocoding, shutter speed, camera type and so on are stored.

A UIImage (and CGImage) only contain image data, no tags.

When the image picker selects an image (either from the library or the camera) it returns a UIImage, not a jpeg. This UIImage is created from the jpeg image data, but the exif data in the jpeg is discarded.

This means this data is not in the UIImage at all and thus is not accessible.

link|flag
Is there any known way to parse the bytes of data to extract the information? Perhaps not an API call, but something I can roll on my own? – bpapa Mar 5 at 20:01
Afraid not, I've clarified the answer to explain why. – Andrew Grant Mar 5 at 20:17
This isn't strictly true. It's possible, as some apps (such as Mobile Photos and PixelPipe) seem to be able to manage it. I still haven't found any sample code though. – tomtaylor Jul 6 at 18:36
vote up 2 vote down

Look here. It is a library you can use to do what you want: http://iphone-exif.googlecode.com/files/iphone-exif-guide-0.8.pdf

link|flag

Your Answer

Get an OpenID
or

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