iOS8 照片扩展显示无法保存更改

iOS8 Photo Extension says Unable to save changes

我正在尝试创建一个 iOS 压缩图像的照片扩展程序,这是 finishContentEditingWithCompletionHandler 函数:

func finishContentEditingWithCompletionHandler(completionHandler: ((PHContentEditingOutput!) -> Void)!) {        
    dispatch_async(dispatch_get_global_queue(CLong(DISPATCH_QUEUE_PRIORITY_DEFAULT), 0)) {
      atomically: true)


        let url = self.input?.fullSizeImageURL

        if let imageUrl = url {
            var fullImage = UIImage(contentsOfFile:
                imageUrl.path!)
            //Just compresses the image
            let renderedJPEGData =
            UIImageJPEGRepresentation(fullImage, self.comprestionRatioFloat)
            var currentFilter = "FakeFilter"

            renderedJPEGData.writeToURL(
                output.renderedContentURL,
                atomically: true)
            let archivedData =
            NSKeyedArchiver.archivedDataWithRootObject(
                currentFilter)
            output.adjustmentData = PHAdjustmentData(formatIdentifier:"MyApp.Ext", formatVersion:"1.0", data:archivedData)

            }

        completionHandler?(output)

        // Clean up temporary files, etc.
    }
}

当我在设备上测试它时,它说“无法保存更改”,有什么问题吗?

最后我发现这是因为输出图像与输入图像几乎相同。稍微缩小输出图像即可解决问题。