有没有一种简单的方法可以使用标准iOS相机应用程序等exif信息拍照并将其保存到相册?
try? PHPhotoLibrary.shared().performChangesAndWait {
let creationRequest = PHAssetChangeRequest.creationRequestForAsset(from: image)
// Set metadata location
if let location = self.locationManager?.latestLocation {
creationRequest.location = location
}
}
没有将位置信息保存到exif。
我尝试了以下解决方案
add GPS metadata dictionary to image taken with AVFoundation in swift
我可以使用AVCapture保存基本的exif信息,但插入位置信息不起作用。
我无法相信没有更简单的方法。