首页 > 解决方案 > PHImageManager 抛出“机会性图像请求的第一阶段返回了非表格格式的图像,这不是致命的,但它是意外的”

问题描述

我正在使用 PHImageCachingManager 来获取 PHAsset 的图像。我需要使用该opportunistic模式,以便首先加载可用的低分辨率图像,然后在全分辨率可用时加载。

出于某种原因,我不断收到以下警告,并且我的低分辨率图像无法加载。仅在获取最高分辨率(来自 iCloud)时才加载图像。

警告:

"First stage of an opportunistic image request returned a non-table format image, this is not fatal, but it is unexpected."

我究竟做错了什么?

    let imageRequestOptions = PHImageRequestOptions()
    imageRequestOptions.isNetworkAccessAllowed = true
    imageRequestOptions.deliveryMode = .opportunistic
    let imageCachingManager = PHCachingImageManager()

    imageCachingManager.requestImage(for: asset , targetSize: PHImageManagerMaximumSize, contentMode: .aspectFill, options: imageRequestOptions) { (image, infoDict) in
        DispatchQueue.main.async {
            if self.myImageView.identifierTag == asset.localIdentifier {
                self.myImageView.image = image
            }
        }
    }

标签: iosswiftuiimagephassetphotosframework

解决方案


imageCachingManager.requestImage(for: asset , targetSize: PHImageManagerMaximumSize, contentMode: .aspectFill, options: imageRequestOptions) { (image, infoDict) in
    DispatchQueue.main.async {
        if self.myImageView.identifierTag == asset.localIdentifier {
            self.myImageView.image = image
        }
    }
}

您正在将可用的最大尺寸设置为图像尺寸。改变

targetSize: PHImageManagerMaximumSize

targetSize: CGSize(width: asset.pixelWidth, height: asset.pixelHeight)

或指定图像大小,如 CGSize(with: 150, height: 150) 除非您想因内存耗尽而爆炸设备。


推荐阅读