将其他相机拍摄的 DNG(原始照片)保存到 iOS 照片库

Saving DNG (raw photos) taken on other camera to iOS Photo Library

我写了一个应用程序,从我的 Ricoh GR II 读取 dng 文件并将它们保存到 iOS 10 的照片库,代码如下

let photoLibrary = PHPhotoLibrary.shared()
photoLibrary.performChanges({
    PHAssetChangeRequest.creationRequestForAsset(from: image)
}) { (success: Bool, error: Error?) -> Void in
    if success {
        print("Saving photo ok")
    } else {
        print("Error writing to photo library: \(error!.localizedDescription)")
    }
}

我收到以下错误:

ImageIO: PluginForUTType:316: file format 'com.adobe.raw-image' doesn't support writing
Error writing to photo library: The operation couldn’t be completed. (Cocoa error -1.)

我想也许 iOS 只支持在 iPhone 上拍摄的 DNG?

PHAssetChangeRequest.creationRequestForAsset(from: image)UIImage 开始,因此无论如何它都不会将原始文件放入您的库中。 A UIImage 是读取和解码图像文件的可显示结果;当您拥有 UIImage 时,它不知道它是来自 JPEG、DNG 或 GIF,还是在 运行 时间通过 CGBitmapContext 或其他方式呈现。当您尝试通过 creationRequestForAssetFromImage: 保存时,您正在获取最终结果并将其转换回文件——无论该方法需要哪种文件。 (可能是 JPEG。)

如果您想将实际的 DNG 文件放入照片库,您需要使用采用 原始文件 而不是解码图像的照片框架方法。此外,由于并非每个照片客户端都可以处理 RAW DNG,因此照片要求您放入库中的每个 DNG 文件都附有 non-RAW-supporting 应用程序(遗憾的是,包括照片应用程序本身)可以看到的 JPEG 表示。

幸运的是,有一个 API。

PHPhotoLibrary.shared().performChanges( {
    let creationRequest = PHAssetCreationRequest.forAsset()
    let creationOptions = PHAssetResourceCreationOptions()
    creationOptions.shouldMoveFile = true
    creationRequest.addResource(with: .photo, data: jpegData, options: nil)
    creationRequest.addResource(with: .alternatePhoto, fileURL: dngFileURL, options: creationOptions)
}, completionHandler: completionHandler)

PHAssetCreationRequest 用于从底层资源创建资产 - 一个或多个图像文件、视频文件、它们的某种组合(用于实时照片)等。photoalternatePhoto 资源是您提供 DNG 文件及其随附的 JPEG 预览的方式。 shouldMoveFile 选项适用于如果您不想从 复制 应用程序沙箱中的文件到照片库存储中耗尽您的设备存储空间 — 适合大资源喜欢 DNG 和 4K 视频。

(代码片段来自Apple's Photo Capture guide。)


也就是说,虽然 Apple 的 RAW 处理支持来自 all sorts of third-party cameras, it doesn't look like their list includes any Ricoh models. (Not even this kind 的图像。)

不过,这并不妨碍您将 Ricoh DNG 存储在照片库中 — 这只是意味着唯一能够从库中有效读取它们的应用程序需要自己的 Ricoh RAW 处理支持才能看到任何内容但预览 JPEG。