過濾器效果顯示一些警告執行昂貴的取消壓縮操作!還有一些內存泄漏後適用於圖像?執行代價高昂的取消壓縮操作
我的代碼是: -
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];
請參閱http://stackoverflow.com/questions/8172838/performing-a-costly-unpadding-operation-what-is-it-and-how-to-fix-it。在我的情況下,控制檯警告肯定不需要釋放上下文。 –
準確的信息是什麼,它指向哪條線? –