Given a CIImage, what is the fastest way to write image data to disk?

强颜欢笑 提交于 2019-12-07 06:58:13

问题


I'm working with PhotoKit and have implemented filters users can apply to photos in their Photo Library. I am currently obtaining the image, applying a filter, returning the edited version as a CIImage, then I convert the CIImage into NSData using UIImageJPEGRepresentation so I may write that out to disk. While this works beautifully, when users attempt to edit really large (like 30 MB) photos it can take upwards of 30 seconds for this to occur, with 98% of the time spent on UIImageJPEGRepresentation (stat obtained from Instruments).

I am looking for a more efficient way to save this edited photo to disk without compromising quality, if possible.

I understand UIImagePNGRepresentation may result in improved quality, but this is even slower than the JPEG representation.

This is what I am currently doing, on the default priority thread (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)

回答1:


I would suggest passing the CGImage directly to ImageIO using CGImageDestination. You can pass a dictionary to CGImageDestinationAddImage to indicate the compression quality, image orientation, etc.

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
}



回答2:


Try using the CIImage method writeJPEGRepresentation (available iOS 10) as follows to eschew UIImage and make the writing faster.

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
    }
}

The @objc keyword enables you to call the method in Objective-C as:

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

For PNG there is a similar method writePNGRepresentation for iOS 11:

   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
            }   
        }
    }


来源:https://stackoverflow.com/questions/27896410/given-a-ciimage-what-is-the-fastest-way-to-write-image-data-to-disk

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!