iOS Core Image-----十行代码实现微信朋友圈模糊效果
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS Core Image-----十行代码实现微信朋友圈模糊效果相关的知识,希望对你有一定的参考价值。
昨天下午微信的朋友圈着实火了一把,在这之后好多程序员都通过抓包工具看到了原图,但是我却在想,网上说是在移动前端做到的那是怎么做到的呢,经过一些学习,终于掌握了一些Core Image的知识,做出了相应的效果,仅仅十行代码
UIImageView * imgView = [[UIImageView alloc]init]; imgView.frame = CGRectMake(50, 50, 200, 200); [self.view addSubview:imgView]; UIImage * img = [UIImage imageNamed:@"Result.png"]; CIImage * inputImg = [CIImage imageWithCGImage:img.CGImage]; CIContext * context = [CIContext contextWithOptions:nil]; //在这里设置Core Image的相应效果 CIFilter * filter = [CIFilter filterWithName:@"CIGaussianBlur" keysAndValues:kCIInputImageKey,inputImg,@"inputRadius",@20, nil]; CIImage * outPutImg = [filter outputImage]; CGImageRef outImage = [context createCGImage:outPutImg fromRect:[outPutImg extent]]; UIImage * newImg = [UIImage imageWithCGImage:outImage]; NSLog(@"%@",newImg); imgView.image = newImg;
上述仅仅是Core Image的一种效果,而Core Image的效果有上百种,要想熟练使用还需要进一步的学习,
提供下面的
-(void)showAllFilter { NSArray * filterNames = [CIFilter filterNamesInCategory:kCICategoryBuiltIn]; for(NSString * filterName in filterNames) { CIFilter * filter = [CIFilter filterWithName:filterName]; NSLog(@"\r filter:%@ \rattributes:%@",filterName,[filter attributes]); } }
一种找到全部效果的方法
同学们可以自行学习并搭配使用哦。
以上是关于iOS Core Image-----十行代码实现微信朋友圈模糊效果的主要内容,如果未能解决你的问题,请参考以下文章
如何关联 UIKit、Core Image、Quartz 2D 以及 iOS 中的各种框架?
iOS 5.0 中的 Core Image 过滤器对于实时视频处理是不是足够快?