如何在使用 DKImagePickerController 时获取带有 exif 数据的图像?

How to get Image with exif data while using DKImagePickerController?

我正在使用 DKImagePickerController,我想用 exif 数据将图像上传到服务器。但是这个选择器从图像中删除了 exif 数据。

if let originalAsset = asset.originalAsset {
  let location = originalAsset.location
  debugPrint("lat:\(location?.coordinate.latitude),lng:\(location?.coordinate.longitude)")
  let createTime = originalAsset.creationDate
}