Tagged Questions

2
votes
2answers
995 views

UIImagePickerController does not deliver geo tag data

When I use UIImagePickerController to select a photo, either from the Camera Roll or the Photo Library, the image that gets returned to me in the method 'didFinishPickingImage' does not contain the ...
0
votes
2answers
180 views

Translate Exif DMS to DD Geolocation with Python

I am using the following code to extract the geolocation of an image taken with an iPhone: from PIL import Image from PIL.ExifTags import TAGS def get_exif(fn): ret = {} i = Image.open(fn) ...