此处注意:UIImage不能强制转化为CIImage,而是需要通过
// 将UIImage转换为CIImage
CIImage *image = [[CIImage alloc] initWithCGImage:currentImage.CGImage];
注意关键词:Core Image。。。
此处注意:UIImage不能强制转化为CIImage,而是需要通过
// 将UIImage转换为CIImage
CIImage *image = [[CIImage alloc] initWithCGImage:currentImage.CGImage];