我正在开发一款允许用户使用PhotoKit编辑照片的应用。我之前将编辑过的照片以JPEG格式保存到磁盘。我想避免转换为JPEG,并已实施修改,以便这样做。它适用于使用相机拍摄的照片,但如果您尝试编辑屏幕截图,PHPhotoLibrary.sharedPhotoLibrary().performChanges
块将失败并记录The operation couldn’t be completed. (Cocoa error -1.)
。我不确定为什么这会导致performChanges块失败,我在这里做错了什么?
我创建了一个sample app available to download来演示问题,我已经在下面提供了相关代码。该应用会尝试编辑照片库中的最新照片。如果成功,它将提示访问以编辑照片,否则不会发生任何事情,您将看到控制台日志。要重现此问题,请截取屏幕截图然后运行该应用。
适用于屏幕截图的当前代码:
let jpegData: NSData = outputPhoto.jpegRepresentationWithCompressionQuality(0.9)
let contentEditingOutput = PHContentEditingOutput(contentEditingInput: self.input)
var error: NSError?
let success = jpegData.writeToURL(contentEditingOutput.renderedContentURL, options: NSDataWritingOptions.AtomicWrite, error: &error)
if success {
return contentEditingOutput
} else {
return nil
}
导致屏幕截图失败的替换代码:
let url = self.input.fullSizeImageURL
let orientation = self.input.fullSizeImageOrientation
var inputImage = CIImage(contentsOfURL: url)
inputImage = inputImage.imageByApplyingOrientation(orientation)
let outputPhoto = createOutputImageFromInputImage(inputImage)!
let originalImageData = NSData(contentsOfURL: self.input.fullSizeImageURL)!
let imageSource = CGImageSourceCreateWithData(originalImageData, nil)
let dataRef = CFDataCreateMutable(nil, 0)
let destination = CGImageDestinationCreateWithData(dataRef, CGImageSourceGetType(imageSource), 1, nil) //getType automatically selects JPG, PNG, etc based on original format
struct ContextStruct {
static var ciContext: CIContext? = nil
}
if ContextStruct.ciContext == nil {
let eaglContext = EAGLContext(API: .OpenGLES2)
ContextStruct.ciContext = CIContext(EAGLContext: eaglContext)
}
let cgImage = ContextStruct.ciContext!.createCGImage(outputPhoto, fromRect: outputPhoto.extent())
CGImageDestinationAddImage(destination, cgImage, nil)
if CGImageDestinationFinalize(destination) {
let contentEditingOutput = PHContentEditingOutput(contentEditingInput: self.input)
var error: NSError?
let imageData: NSData = dataRef
let success = imageData.writeToURL(contentEditingOutput.renderedContentURL, options: .AtomicWrite, error: &error)
if success {
//it does succeed
return contentEditingOutput
} else {
return nil
}
}
答案 0 :(得分:0)
由于调整后的照片始终保存为JPG文件,屏幕截图实际上是PNG文件,因此会出现问题。
当我调试你的示例项目并且在PhotoEditor中看到它时,contentEditingOutput.renderedContentURL
是JPG的URL,而如果你检查CGImageSourceGetType(imageSource)
的结果,那么很明显它是& #39; sa PNG(返回PNG UTI:public.png)。
所以我去了renderedContentURL
table
,其中指出如果编辑照片资产,则更改的图像会以JPEG格式编写 - 如果您的图像是巴布亚新几内亚。这让我觉得Apple不支持编辑PNG文件或者不想要你。去图..