关于高斯模糊先来看看iOS7的实现吧
1.利用toolbar
UIImageView*backView = [[UIImageViewalloc] initWithFrame:self.view.bounds];
backView.image= [UIImageimageNamed:@"123.jpg"];
[self.viewaddSubview:backView];
UIToolbar*toolbar = [[UIToolbaralloc] initWithFrame:self.view.bounds];
toolbar.barStyle=UIBarStyleBlackTranslucent;
[backView addSubview:toolbar];toolbar.alpha=0.5;
2.使用滤镜
// 1、创建输入图像,CIImage类型,这里使用一个网上图片。
CIImage*inputImage = [CIImageimageWithContentsOfURL:[NSURLURLWithString:@"http://echo-image.qiniucdn.com/FtPAdyCH-SlO-5xEe009AFE-N0EF?imageMogr2/auto-orient/quality/100%7CimageView2/4/w/640/q/100"]];
// 2、构建一个滤镜图表
CIColor*sepiaColor = [CIColorcolorWithRed:0.76green:0.65blue:0.54];
// 2.1 先构建一个 CIColorMonochrome 滤镜,并配置输入图像与滤镜参数CIFilter*monochromeFilter =[CIFilterfilterWithName:@"CIColorMonochrome"withInputParameters:@{@"inputColor": sepiaColor,@"inputIntensity":@1.0}];
[monochromeFilter setValue:inputImage forKey:@"inputImage"];
// 通过KVC来设置输入图像
// 2.2 先构建一个 CIVignette 滤镜
CIFilter*vignetteFilter = [CIFilterfilterWithName:@"CIVignette"withInputParameters:@{@"inputRadius": @2.0,@"inputIntensity":@1.0}];
[vignetteFilter setValue:monochromeFilter.outputImageforKey:@"inputImage"];
// 以monochromeFilter的输出来作为输入
// 3、得到一个滤镜处理后的图片,并转换至 UIImage
// 创建一个 CIContextCIContext*ciContext = [CIContextcontextWithOptions:nil];
// 将 CIImage 过渡到 CGImageRef 类型
CGImageRefcgImage = [ciContext createCGImage:vignetteFilter.outputImagefromRect:inputImage.extent];
// 最后转换为 UIImage 类型UIImage*uiImage = [UIImageimageWithCGImage:cgImage];
UIImageView*imgaeView = [[UIImageViewalloc]initWithImage:uiImage];
imgaeView.frame=self.view.frame;[self.viewaddSubview:imgaeView];
3.使用UIVisualEffect 是iOS8中的类
但经常地,我们需要在模糊和透明两个状态之间切换,通常大家的做法就是直接动画它的alpha值,但是...结果不言而喻,渐变的过程十分奇怪,有点朦胧的感觉....总之就是不好看,并且 iOS 也会 print 出一个警告说效果在alpha为 1 之前会 broken。好吧,总之渐变 alpha 值的做法大家以后一定不要用了。
然后,很多人就想到要自己实现 Blur 算法,达到自定义的效果,也有用 Private API 来强行设置UIBlurEffect的blurRadius属性,但这些都不是最好的方法
其实,iOS 内部早已提供了一个完美的解决方案,那就是UIView.animateWith...,使用这个方法可以完美地渐变模糊半径和 Vibrancy 亮度效果,如果大家仔细看了WWDC 2015的What's New in Cocoa Touch这个 Session 的话,你应该听说了 iOS 9 新增了模糊动画的功能。
看看用法吧
// 创建显示图片
UIImageView* imageView = [[UIImageViewalloc] init];
/** 毛玻璃特效类型
* UIBlurEffectStyleExtraLight,
* UIBlurEffectStyleLight,
* UIBlurEffectStyleDark
*/
UIBlurEffect* blurEffect = [UIBlurEffecteffectWithStyle:UIBlurEffectStyleLight];
// 毛玻璃视图
UIVisualEffectView* effectView = [[UIVisualEffectViewalloc] initWithEffect:blurEffect];
//添加到要有毛玻璃特效的控件中
effectView.frame= imageView.bounds;[imageView addSubview:effectView];
//设置模糊透明度
effectView.alpha=.5f;