iOS给图片添加滤镜&使用openGLES动态渲染图片

给图片增加滤镜有这两种方式: CoreImage / openGLES

下面先说明如何使用CoreImage给图片添加滤镜, 主要为以下步骤:

1.导入CIImage格式的原始图片
2.创建CIFilter滤镜
3.用CIContext将滤镜中的图片渲染出来
4.导出渲染后的图片

参考代码:

//导入CIImage
    CIImage *ciImage = [[CIImage alloc] initWithImage:[UIImage imageNamed:@"hua"]];
    
    //创建出Filter滤镜
    CIFilter *filter = [CIFilter filterWithName:@"CIPixellate"];
    
    [filter setValue:ciImage forKey:kCIInputImageKey];
    
    [filter setDefaults];
    
    CIImage *outImage = [filter valueForKey:kCIOutputImageKey];
    
    //用CIContext将滤镜中的图片渲染出来
    CIContext *context = [CIContext contextWithOptions:nil];
    
    CGImageRef cgImage = [context createCGImage:outImage
                                       fromRect:[outImage extent]];
    
    //导出图片
    UIImage *showImage = [UIImage imageWithCGImage:cgImage];
    
    CGImageRelease(cgImage);
    
    UIImageView *imageView = [[UIImageView alloc] initWithImage:showImage];
    imageView.center       = self.view.center;
    [self.view addSubview:imageView];

滤镜有哪些可选可以参看以下文章:http://www.jianshu.com/p/3e2cca585ccc

当要设置多个滤镜的时候, 出了新创建一个CIFilter外还要额外设定kCIInputAngleKey, 代码如下:

//导入CIImage
    CIImage *ciImage = [[CIImage alloc] initWithImage:[UIImage imageNamed:@"hua.jpeg"]];
    
    //创建出Filter滤镜
    CIFilter *filter = [CIFilter filterWithName:@"CIPixellate"];
    
    [filter setValue:ciImage forKey:kCIInputImageKey];
    
    [filter setDefaults];
    
    CIImage *outImage = [filter valueForKey:kCIOutputImageKey];
    
    CIFilter *filterTwo = [CIFilter filterWithName:@"CIHueAdjust"];
    
    [filterTwo setValue:outImage forKey:kCIInputImageKey];
    
    [filterTwo setDefaults];
    
    [filterTwo setValue:@(1.0f) forKey:kCIInputAngleKey]; //如果不增加这行新增的滤镜不会生效
    
    CIImage *outputImage = [filterTwo valueForKey:kCIOutputImageKey];
    
    //用CIContext将滤镜中的图片渲染出来
    CIContext *context = [CIContext contextWithOptions:nil]; 
    
    CGImageRef cgImage = [context createCGImage:outputImage
                                       fromRect:[outputImage extent]];
    
    //导出图片
    UIImage *showImage = [UIImage imageWithCGImage:cgImage];
    
    CGImageRelease(cgImage);
    
    UIImageView *imageView = [[UIImageView alloc] initWithImage:showImage];
    imageView.center       = self.view.center;
    [self.view addSubview:imageView];

下面来介绍怎么用openGLES来使用滤镜渲染图片

使用openGlES的步骤大致如下:

1.导入要渲染的图片
2.获取OpenGLES渲染的上下文
3.创建出渲染的GLKView buffer
4.创建CoreImage的上下文
5.进行CoreImage的相关设置
6.开始渲染并显示图片

参考代码如下:

//导入要渲染的图片
    UIImage *showImage = [UIImage imageNamed:@"hua.jpeg"];
    CGRect rect        = CGRectMake(0, 0, showImage.size.width, showImage.size.height);
    
    //获取OpenGLES渲染的上下文
    EAGLContext *eagContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2];
    
    //创建出渲染的buffer
    GLKView *glkView = [[GLKView alloc] initWithFrame:rect
                                              context:eagContext];
    [glkView bindDrawable];
    [self.view addSubview:glkView];
    
    //创建出CoreImage的上下文
    CIContext *ciContext = [CIContext contextWithEAGLContext:eagContext
                                                     options:@{kCIContextWorkingColorSpace: [NSNull null]}];
    
    //CoreImage相关设置
    CIImage *ciImage = [[CIImage alloc] initWithImage:showImage];
    
    CIFilter *filter = [CIFilter filterWithName:@"CISepiaTone"];
    
    [filter setValue:ciImage forKey:kCIInputImageKey];
    [filter setValue:@(0) forKey:kCIInputIntensityKey];
    
    //开始渲染
    [ciContext drawImage:[filter valueForKey:kCIOutputImageKey]
                  inRect:CGRectMake(0, 0, glkView.drawableWidth, glkView.drawableHeight)
                fromRect:[ciImage extent]];
    
    [glkView display];

如果要动态渲染, 可以通过UISilder动态调整一下代码的vaule值

[filter setValue:vaule forKey:kCIInputIntensityKey];
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • Core Graphics Framework是一套基于C的API框架,使用了Quartz作为绘图引擎。它提供了低...
    ShanJiJi阅读 5,581评论 0 20
  • 老骥伏枥,志在千里 前记 最近一直在研究图像处理方面,既上一篇iOS Quart2D绘图之UIImage简单使用后...
    半笑半醉間阅读 9,917评论 0 14
  • 原文地址:http://www.cocoachina.com/industry/20140115/7703.htm...
    默默_David阅读 11,327评论 0 1
  • 长大的路上,不知道会遇见什么,不知道该怎样去做,不知道为什么都在改变,但是一切都在进行中……
    云萱阅读 1,661评论 0 1
  • To be or not to be ,that is then question 。 渐渐地开始懂得了一些,也许...
    Vv萌阅读 2,515评论 0 1

友情链接更多精彩内容