Objective-C - 将GPS信息添加到照片中

时间:2011-10-18 11:49:41

标签: iphone ios image gps exif

我想知道在将项目保存到相机胶卷时是否可以将GPS信息添加到照片中。

我目前用于保存图片的代码是:

UIImage *theImage = (UIImage *)[info objectForKey: UIImagePickerControllerOriginalImage];
        UIImageWriteToSavedPhotosAlbum(theImage, self, 
                                       @selector(image:didFinishSavingWithError:contextInfo:), nil);

我想知道如何修改图像EXIF数据以添加当前位置,并使其与iPhone上的“位置”功能兼容。

1 个答案:

答案 0 :(得分:3)

此示例:http://caffeinatedcocoa.com/blog/?p=7说明如何更新照片的日期。转到CGImageProperties Reference,并使用相关的GPS键替换示例的密钥kCGImagePropertyExifDateTimeDigitized。我自己没试过,但听起来应该有用。 :)