gpt4 book ai didi

ios - EXIF 的 PHContentEditingInputRequestOptions block 主线程

转载 作者:搜寻专家 更新时间:2023-11-01 06:16:58 24 4
gpt4 key购买 nike

我正在获取图像 EXIF 以获取 LensMake。

这是我找到的唯一方法:

let lstAssets : PHFetchResult<PHAsset> = PHAsset.fetchAssets(with: PHAssetMediaType.image, options: nil)
lstAssets.enumerateObjects({object , index, stop in
let options = PHContentEditingInputRequestOptions()
object.requestContentEditingInput(with: options) { (contentEditingInput: PHContentEditingInput?, _) -> Void in
let fullImage : CIImage = CIImage(contentsOf: contentEditingInput!.fullSizeImageURL!)!
if let exif = fullImage.properties["{Exif}"]{ ...

问题是 requestContentEditingInput 的回调/关闭/完成中的代码在主线程中运行,并阻止来自 UI 的任何调用(例如按钮的 IBAction)。因此,如果我从 100 的 lstAssets.count 开始并在 enumerateObjects 中发出 100 个请求,则需要完成所有回调才能在 UI 中执行某些操作。

我尝试将 enumerateObjects 放入 DispatchQueue.global(qos: .background).async 中,但没有成功。如果我将回调代码放在后台线程中,也会发生同样的情况。

奇怪的是,如果我将 PHImageManager.default() 与 requestImageData 用于图像,则此行为会有所不同,但问题是我无法通过这种方式获取 EXIF。

如何解锁队列?有没有更好的方法来获取 EXIF?

我在 Xcode 8.2 中运行 Swift 3。

更新:GCD 的奇怪行为:在 PHContentEditingInputRequestOptions 解锁主线程之前,在 enumerateObjects 中运行一个 requestImageData,但仍然在通过单击进入下一个屏幕时,UI 等待回调结束。

最佳答案

如果您只需要读取 exif 元数据,您可以使用 PHImageManager,它对后台队列更友好。所以你可以把你的代码改成这样:

let operationQueue = OperationQueue()

let lstAssets : PHFetchResult<PHAsset> = PHAsset.fetchAssets(with: PHAssetMediaType.image, options: nil)
operationQueue.addOperation {
self.readPhotosMetadata(result: lstAssets, operationQueue: operationQueue)
}

func readPhotosMetadata(result: PHFetchResult<PHAsset>, operationQueue: OperationQueue) {
let imageManager = PHImageManager.default()
result.enumerateObjects({object , index, stop in
let options = PHImageRequestOptions()
options.isNetworkAccessAllowed = true
options.isSynchronous = false
imageManager.requestImageData(for: object, options: options, resultHandler: { (imageData, dataUTI, orientation, info) in
operationQueue.addOperation {
guard let data = imageData,
let metadata = type(of: self).fetchPhotoMetadata(data: data) else {
print("metadata not found for \(object)")
return
}
print(metadata)
}
})
})
}

static func fetchPhotoMetadata(data: Data) -> [String: Any]? {
guard let selectedImageSourceRef = CGImageSourceCreateWithData(data as CFData, nil),
let imagePropertiesDictionary = CGImageSourceCopyPropertiesAtIndex(selectedImageSourceRef, 0, nil) as? [String: Any] else {
return nil
}
return imagePropertiesDictionary

}

关于ios - EXIF 的 PHContentEditingInputRequestOptions block 主线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42582607/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com