iOS保存照片到相机胶卷不会保留EXIF / GPS元数据

前端之家收集整理的这篇文章主要介绍了iOS保存照片到相机胶卷不会保留EXIF / GPS元数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道可以使用UI ImageWriteToSavedPhotosAlbum将UIImage保存到相机胶卷中,但这种方法会从原始文件删除所有元数据(EXIF,GPS数据等).有没有办法保存原始文件,而不仅仅是将图像数据保存到iOS设备的相机胶卷?

编辑:我想我应该更具体一点.目的是将现有JPEG文件的副本保存到用户的相机胶卷中.最有效的方法是什么?

解决方法

根据您保存图像的方式,您可以选择ALAssetsLibrary提供的方法之一.
– writeImageDataToSavedPhotosAlbum:Metadata:completionBlock:

– writeImageToSavedPhotosAlbum:Metadata:completionBlock:

(取决于您是将图像作为实际UIImage还是作为NSData)

http://developer.apple.com/library/ios/#documentation/AssetsLibrary/Reference/ALAssetsLibrary_Class/Reference/Reference.html

请注意,您必须为字典设置正确的密钥,否则可能无法正确保存.

以下是GPS信息的示例:

NSDictionary *gpsDict = [NSDictionary dictionaryWithObjectsAndKeys:
                 [NSNumber numberWithFloat:fabs(loc.coordinate.latitude)],kCGImagePropertyGPSLatitude,((loc.coordinate.latitude >= 0) ? @"N" : @"S"),kCGImagePropertyGPSLatitudeRef,[NSNumber numberWithFloat:fabs(loc.coordinate.longitude)],kCGImagePropertyGPSLongitude,((loc.coordinate.longitude >= 0) ? @"E" : @"W"),kCGImagePropertyGPSLongitudeRef,[formatter stringFromDate:[loc timestamp]],kCGImagePropertyGPSTimeStamp,[NSNumber numberWithFloat:fabs(loc.altitude)],kCGImagePropertyGPSAltitude,nil];

这是一个键列表:

http://developer.apple.com/library/ios/#documentation/GraphicsImaging/Reference/CGImageProperties_Reference/Reference/reference.html#//apple_ref/doc/uid/TP40005103

原文链接:https://www.f2er.com/iOS/328673.html

猜你在找的iOS相关文章