三个观察:
您需要将 设置为inputImage
来自CIImage
您的UIImage
:
[gaussianBlurFilter setValue:[CIImage imageWithCGImage:[imageView.image CGImage]] forKey:kCIInputImageKey];
我没有看到你抓住outputImage
,例如:
CIImage *outputImage = [gaussianBlurFilter outputImage];
你大概想把它转换CIImage
回UIImage
.
所以,把所有这些放在一起:
CIFilter *gaussianBlurFilter = [CIFilter filterWithName:@"CIGaussianBlur"];
[gaussianBlurFilter setDefaults];
CIImage *inputImage = [CIImage imageWithCGImage:[imageView.image CGImage]];
[gaussianBlurFilter setValue:inputImage forKey:kCIInputImageKey];
[gaussianBlurFilter setValue:@10 forKey:kCIInputRadiusKey];
CIImage *outputImage = [gaussianBlurFilter outputImage];
CIContext *context = [CIContext contextWithOptions:nil];
CGImageRef cgimg = [context createCGImage:outputImage fromRect:[inputImage extent]]; // note, use input image extent if you want it the same size, the output image extent is larger
UIImage *image = [UIImage imageWithCGImage:cgimg];
CGImageRelease(cgimg);
或者,如果您前往WWDC 2013 示例代码(需要付费开发者订阅)并下载iOS_UIImageEffects
,然后您可以获取该UIImage+ImageEffects
类别。这提供了一些新方法:
- (UIImage *)applyLightEffect;
- (UIImage *)applyExtraLightEffect;
- (UIImage *)applyDarkEffect;
- (UIImage *)applyTintEffectWithColor:(UIColor *)tintColor;
- (UIImage *)applyBlurWithRadius:(CGFloat)blurRadius tintColor:(UIColor *)tintColor saturationDeltaFactor:(CGFloat)saturationDeltaFactor maskImage:(UIImage *)maskImage;
因此,要模糊和成像并使其变亮(给出“毛玻璃”效果),您可以执行以下操作:
UIImage *newImage = [image applyLightEffect];
有趣的是,Apple 的代码并没有使用CIFilter
,而是调用vImageBoxConvolve_ARGB8888
了vImage 高性能图像处理框架。
这种技术在 WWDC 2013 视频Implementation Engaging UI on iOS中有说明。
我知道这个问题是关于 iOS 7 的,但现在在 iOS 8 中,可以通过以下方式为任何UIView
对象添加模糊效果UIBlurEffect
:
UIVisualEffect *effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:effect];
effectView.frame = imageView.bounds;
[imageView addSubview:effectView];