我得到了Apple的“ SamplePhotosApp ”示例代码,并且在相册网格照片布局中,试图检测DNG RAW文件(如果是DNG,则贴上徽章)。

默认 cellForItemAt :

override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let asset = fetchResult.object(at: indexPath.item)

        // Dequeue a GridViewCell.
        guard let cell = collectionView.dequeueReusableCell(withReuseIdentifier: String(describing: GridViewCell.self), for: indexPath) as? GridViewCell
            else { fatalError("unexpected cell in collection view") }

        // Add a badge to the cell if the PHAsset represents a Live Photo.
        if asset.mediaSubtypes.contains(.photoLive) {
            cell.livePhotoBadgeImage = PHLivePhotoView.livePhotoBadgeImage(options: .overContent)
        }

        // Request an image for the asset from the PHCachingImageManager.
        cell.representedAssetIdentifier = asset.localIdentifier
        imageManager.requestImage(for: asset, targetSize: thumbnailSize, contentMode: .aspectFill, options: nil, resultHandler: { image, _ in
            // The cell may have been recycled by the time this handler gets called;
            // set the cell's thumbnail image only if it's still showing the same asset.
            if cell.representedAssetIdentifier == asset.localIdentifier {
                cell.thumbnailImage = image
            }
        })

        return cell

    }

DNG / RAW格式

使用DNG文件时,可能会嵌入预览或缩略图(使用iOS11),并且当然会附加完全独立的JPEG。

使用上面的代码, requestImage 仍通过拉出其嵌入式JPEG来显示DNG文件。但是,它不知道 PHAsset 实际上是DNG文件。

如何确定PHAsset是否为DNG?

我尝试过的事情
let fileExtension = ((asset.value(forKey: "uniformTypeIdentifier") as! NSString).pathExtension as NSString).uppercased
if fileExtension == "DNG" || fileExtension == "RAW-IMAGE" {
     //Show RAW Badge
}

仅当DNG文件仅嵌入预览JPEG时,以上方法才有效。如果嵌入了常规的全尺寸JPEG,则它将PHAsset识别为JPEG。

有人告诉我试试这个:
let res = PHAssetResource.assetResources(for: asset)

但是某项资产可能具有多种资源(调整数据等)。我将如何进行这项工作?

最佳答案

一些概念性背景:在PhotoKit中可以使用三个级别的等级...

  • PHAsset和 friend 一起工作时,您处于抽象模型级别。每个资产都是“照片”数据库中的一个条目-单个“事物”,在“照片”应用程序中显示为缩略图。在这一层,它只是一个“事物”(不是像素缓冲区或视频数据流)。
  • 当您使用PHImageManager时,您仍然有点抽象。您告诉PhotoKit,“给我一张图像(或视频),这是在这种情况下向用户显示此资产的一种适当方法。”在此级别仍会提取出哪种文件包含资产的原始数据。
  • 这些抽象“事物”中的每一个可能都有一个或多个提供其图像或视频数据,内部元数据等的原始文件。要解决此类问题(包括文件格式),您需要使用PHAssetResource(可能还有PHAssetResourceManager) 。

  • 因此,如果要查找资产是否包含RAW或DNG数据,则需要查看其资源。
  • 使用 PHAssetResource . assetResources(for:) 获取与资产相对应的资源集。
  • 通过检查每种资源的 type 属性来缩小资源列表-由RAW或DNG文件支持的资产应将其存储在alternatePhoto类型的资源中。 (尽管第三方应用程序至少有某种可能性可以使用fullSizePhoto类型写入DNG文件,所以您也可以在此处进行检查。)
  • 检查缩小列表中每个资源的 uniformTypeIdentifier 属性。用于DNG文件的UTI是"com.adobe.raw-image"(在Xcode 9中,有一个字符串常量AVFileTypeDNG)。如果只需要DNG文件,那可能很好,但是要更广泛地检查RAW文件,最好测试该资源的UTI是否符合 "public.camera-raw-image" aka kUTTypeRawImage
  • 07-24 09:30