我正在使用ALAsset来检索这样的图像:
[[asset defaultRepresentation] fullResolutionImage]]
这返回CGImageRef,我想尽快保存到磁盘…
解决方案1:
UIImage *currentImage = [UIImage imageWithCGImage:[[asset defaultRepresentation] fullResolutionImage]]; NSData *currentImageData = UIImagePNGRepresentation(currentImage); [currentImageData writeToFile:filePath atomically:YES];
解决方案2:
CFURLRef url = (__bridge CFURLRef)[NSURL fileURLWithPath:filePath]; CGImageDestinationRef destination = CGImageDestinationCreateWithURL(url,kUTTypePNG,1,NULL); CGImageDestinationAddImage(destination,[[asset defaultRepresentation] fullResolutionImage],nil); CGImageDestinationFinalize(destination);
问题是两种方法在设备上的执行速度都很慢.每张图片大约需要2秒才能执行此操作.这绝对是长久的.
问题:如何加快图像保存过程?或许还有更好的解决方案吗?
更新:
两种解决方案中性能的最佳改进是将图像保存为JPEG格式而不是PNG.
因此,对于解决方案1,已使用UIImageJPEGRepresentation替换了UIImagePNGRepresentation.
对于解决方案2,已将kUTTypePNG替换为kUTTypeJPEG.
解决方法
这是因为PNG压缩是一个缓慢的过程,并且在iPhone的处理器上需要一段时间,特别是对于全尺寸摄影.