vote up 6 vote down star
4

It's well known that UIImagePickerController doesn't return the metadata of the photo after selection. However, a couple of apps in the app store (Mobile Fotos, PixelPipe) seem to be able to read the original files and the EXIF data stored within them, enabling the app to extract the geodata from the selected photo.

They seem to do this by reading the original file from the /private/var/mobile/Media/DCIM/100APPLE/ folder and running it through an EXIF library.

However, I can't work out a way of matching a photo returned from the UIImagePickerController to a file on disk. I've explored file sizes, but the original file is a JPEG, whilst the returned image is a raw UIImage, making it impossible to know the file size of the image that was selected.

I'm considering making a table of hashes and matching against the first x pixels of each image. This seems a bit over the top though, and probably quite slow.

Any suggestions?

flag

80% accept rate
Have you found a solution or alternate approach in the mean time? – Ton Aug 29 at 21:02
It seems like the solution that most people go for is building their own Table View for selecting from the list of photos. Mobile Fotos seems to have access to the Camera Picker, but I can't work out how. – tomtaylor Aug 31 at 15:28

4 Answers

vote up 0 vote down

You might be able to hash the image data returned by the UIImagePickerController and each of the images in the directory and compare them.

link|flag
That's an interesting idea - have you got any idea whether it works, and what the speed is like? – tomtaylor Nov 11 at 12:46
No idea if it works, just an approach to try. If it works but performs poorly you might be able to cache the filenames and hashes in a plist so that you only have to calculate them once for existing images. – Frank Schmitt Nov 11 at 17:36
vote up 0 vote down

Just a thought, but have you tried TTPhotoViewController in the Three20 project on GitHub?

That provides an image picker that can read from multiple sources. You may be able to use it as an alternative to UIImagePickerController, or the source might give you a clue how to work out how to get the info you need.

link|flag
That would work, but you'd still have to read the images out of /private/var/mobile/Media/DCIM/100APPLE/ - all it does is provide a nicer UI on top of that. – tomtaylor Nov 11 at 12:46
vote up 0 vote down

Is there a specific reason you want to extract the location data from the image? An alternative could be to get the location separately using the CoreLocation framework. If it's only the geodata you need, this might save you some headaches.

link|flag
That's what the flickr app does and it's in fact very confusing: When uploading a picture you took on a trip from at home, it will show your current location rather than the place where the picture was taken... – FRotthowe Nov 10 at 21:17
Yes, that's what I'm trying to avoid. I also want the DateTakenOriginal from the EXIF header. – tomtaylor Nov 11 at 12:44
vote up 1 vote down

This is something that the public API does not provide, but could be useful to many people. Your primary recourse is to file a bug with Apple that describes what you need (and it can be helpful to explain why you need it as well). Hopefully your request could make it into a future release.

After filing a bug, you could also use one of the Developer Technical Support (DTS) incidents that came with your iPhone Developer Program membership. If there is a public way to do this, an Apple engineer will know. Otherwise, it may at least help get your plight a bit more attention within the mothership. Best of luck!

link|flag
Thanks - I've just filed a bug: #7388190. – tomtaylor Nov 12 at 11:11

Your Answer

Get an OpenID
or

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