给定一个 CIImage,将图像数据写入磁盘的最快方法是什么?



我正在使用PhotoKit,并实施了用户可以应用于照片库中照片的滤镜。我目前正在获取图像,应用过滤器,将编辑后的版本作为CIImage返回,然后我使用UIImageJPEGRepresentationCIImage转换为NSData,以便我可以将其写到磁盘。虽然这很好用,但当用户尝试编辑非常大(如 30 MB)的照片时,可能需要 30 秒以上才能发生这种情况,其中 98% 的时间花在UIImageJPEGRepresentation上(从 Instruments 获得的统计数据)。

如果可能的话,我正在寻找一种更有效的方法来将此编辑后的照片保存到磁盘,而不会影响质量。

我知道UIImagePNGRepresentation可能会导致质量提高,但这甚至比 JPEG 表示速度还要慢。

这是我目前正在做的,在默认优先级线程(qos_class_utility

):
func jpegRepresentationOfImage(image: CIImage) -> NSData {
    let eaglContext = EAGLContext(API: .OpenGLES2)
    let ciContext = CIContext(EAGLContext: eaglContext)
    let outputImageRef = ciContext.createCGImage(image, fromRect: image.extent())
    let uiImage = UIImage(CGImage: outputImageRef, scale: 1.0, orientation: UIImageOrientation.Up)
    return UIImageJPEGRepresentation(uiImage, 0.9) //this takes upwards of 20-30 seconds with large photos!
}
//writing out to disk:
var error: NSError?
let success = jpegData.writeToURL(contentEditingOutput.renderedContentURL, options: NSDataWritingOptions.AtomicWrite, error: &error)

尝试使用 CIContext 方法 writeJPEGRepresentation (可用的 iOS 10),如下所示,以避开 UIImage 并使写作速度更快。

extension CIImage {
    @objc func saveJPEG(_ name:String, inDirectoryURL:URL? = nil, quality:CGFloat = 1.0) -> String? {
        
        var destinationURL = inDirectoryURL
        
        if destinationURL == nil {
            destinationURL = try? FileManager.default.url(for:.documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
        }
        
        if var destinationURL = destinationURL {
            
            destinationURL = destinationURL.appendingPathComponent(name)
            
            if let colorSpace = CGColorSpace(name: CGColorSpace.sRGB) {
                
                do {
                    let context = CIContext()
                    try context.writeJPEGRepresentation(of: self, to: destinationURL, colorSpace: colorSpace, options: [kCGImageDestinationLossyCompressionQuality as CIImageRepresentationOption : quality])
                    
                    return destinationURL.path
                    
                } catch {
                    return nil
                }
            }
        }
        
        return nil
    }
}

@objc 关键字使您能够在 Objective-C 中调用该方法:

NSString* path = [image saveJPEG:@"image.jpg" inDirectoryURL:url quality:1.0];

对于PNG,有一个类似的方法为iOS 11编写PNGRepresentation

   if #available(iOS 11.0, *) {
        if let colorSpace = CGColorSpace(name: CGColorSpace.sRGB) {
                
            do {
                let format = CIFormat.RGBA8
                    
                try context.writePNGRepresentation(of: self, to: destinationURL, format: format, colorSpace: colorSpace)
                    
                return destinationURL.path
                    
            } catch {
                return nil
            }   
        }
    }

我建议使用CGImageDestination将CGImage直接传递给ImageIO。 您可以将字典传递给CGImageDestinationAddImage以指示压缩质量,图像方向等。

CFDataRef save_cgimage_to_jpeg (CGImageRef image)
{
    CFMutableDataRef cfdata = CFDataCreateMutable(nil,0);
    CGImageDestinationRef dest = CGImageDestinationCreateWithData(data, CFSTR("public.jpeg"), 1, NULL);
    CGImageDestinationAddImage(dest, image, NULL);
    if(!CGImageDestinationFinalize(dest))
        ; // error
    CFRelease(dest);
    return cfdata
}

相关内容

  • 没有找到相关文章

最新更新