我有一个UI
Image从CI
Image加载:
tempImage = [UIImage imageWithCIImage:ciImage];
问题是我需要将tempImage裁剪到特定的CGRect,我知道如何做到这一点的唯一方法是使用CGImage.
问题是在iOS 6.0文档中我发现这个:
CGImage
如果使用CIImage对象初始化UIImage对象,则该属性的值为NULL.
A.如何将CIImage转换为CGImage?
我使用这个代码,但是我有一个内存泄漏(并且不明白在哪里):
+(UIImage*)UIImageFromCIImage:(CIImage*)ciImage { CGSize size = ciImage.extent.size; UIGraphicsBeginImageContext(size); CGRect rect; rect.origin = CGPointZero; rect.size = size; UIImage *remImage = [UIImage imageWithCIImage:ciImage]; [remImage drawInRect:rect]; UIImage *result = UIGraphicsGetImageFromCurrentImageContext(); UIGraphicsEndImageContext(); remImage = nil; ciImage = nil; // return result; }
解决方法
请参阅
createCGImage:fromRect:的CIContext文档
CGImageRef img = [myContext createCGImage:ciImage fromRect:[ciImage extent]];
从答案到类似的问题:https://stackoverflow.com/a/10472842/474896
此外,由于您已经开始使用CIImage,您可以使用CIFilter来实际裁剪图像.