最后两行有什么区别?
CIImage *outputImage = [compositingFilter valueForKey:@"outputImage"];
[[[NSGraphicsContext currentContext] CIContext] drawImage:outputImage atPoint:point fromRect:fromRect];
[outputImage drawAtPoint:point fromRect:fromRect operation:op fraction:delta];
最后一个产生一个畸变图像,其矩形小于 [outputImage extent];
drawImage: 行在某些情况下会崩溃。