0
我正在使用DKImagePickerController
,我想上傳圖像到服務器與exif
數據。但是這個選擇器從圖像中刪除exif
數據。如何在使用DKImagePickerController時使用exif數據獲取圖像?
我正在使用DKImagePickerController
,我想上傳圖像到服務器與exif
數據。但是這個選擇器從圖像中刪除exif
數據。如何在使用DKImagePickerController時使用exif數據獲取圖像?
if let originalAsset = asset.originalAsset {
let location = originalAsset.location
debugPrint("lat:\(location?.coordinate.latitude),lng:\(location?.coordinate.longitude)")
let createTime = originalAsset.creationDate
}
你可以發佈你試過的代碼片段嗎? –