フィルタ効果はいくつかの警告を示しますコストのかかるパディング解除操作を実行します!また、画像に適用した後のメモリリークはありますか?
私のコードは:-
CIImage *imagee = [Filter outputImage];
CIContext *context = [CIContext contextWithOptions:nil];
CGImageRef cgImage = [context createCGImage:
imagee fromRect: imagee.extent];
UIImage *resultUIImage = [[UIImage alloc ]initWithCGImage: cgImage];
image=resultUIImage;
CGImageRelease(cgImage);
cgImage=nil;
SaveImage=image;
[resultUIImage release];