iOS技术文档No.9 AppKit_CIImage、CIFilter滤镜效果的简单使用

介绍

1、框架介绍

(1)CoreImage,不用导入
(2)是一个图像框架 它基于OpenGL顶层创建 底层则用着色器来处理图像
(3)它利用了GPU基于硬件加速来处理图像
(4)CoreImage中有很多滤镜
(5)它们能够一次给予一张图像或者视频帧多种视觉效果 -> 滤镜链
(6)而且滤镜可以连接起来组成一个滤镜链 把滤镜效果叠加起来处理图像

2、类介绍

(1)cIImage:保存图像数据的类
CGImageRef:图像中的数据
(2)CIFilter:滤镜类
图片属性进行细节处理的类
它对于所有的像素进行操作 用键值(KVC)来设置
(3)CIContext:上下文是实现对图像处理的具体对象
滤镜对象输出的图像并不是合成之后的图像,需要使用图像处理的上下文合并输出的图像

3、效果介绍 100+效果可以通过attributes查找需要设置的内容

按效果分类:
kCICategoryDistortionEffect 扭曲效果,比如bump、旋转、hole
kCICategoryGeometryAdjustment 几何开着调整,比如仿射变换、平切、透视转换
kCICategoryCompositeOperation 合并,比如源覆盖(source over)、最小化、源在顶(source atop)、色彩混合模式
kCICategoryHalftoneEffect Halftone效果,比如screen、line screen、hatched
kCICategoryColorAdjustment 色彩调整,比如伽马调整、白点调整、曝光
kCICategoryColorEffect 色彩效果,比如色调调整、posterize
kCICategoryTransition 图像间转换,比如dissolve、disintegrate with mask、swipe
kCICategoryTileEffect 瓦片效果,比如parallelogram、triangle
kCICategoryGenerator 图像生成器,比如stripes、constant color、checkerboard
kCICategoryGradient 渐变,比如轴向渐变、仿射渐变、高斯渐变
kCICategoryStylize 风格化,比如像素化、水晶化
kCICategorySharpen 锐化、发光
kCICategoryBlur 模糊,比如高斯模糊、焦点模糊、运动模糊
按使用场景分类:
kCICategoryStillImage 用于静态图像
kCICategoryVideo 用于视频
kCICategoryInterlaced 用于交错图像
kCICategoryNonSquarePixels 用于非矩形像素
kCICategoryHighDynamicRange 用于HDR

使用步骤:

1.实例CIImage -> 先把UIImage->CGImageRef -> CIImage
2.创建CIFilter滤镜并给滤镜设置属性(KVC)
3.创建CIContext上下文
4.合并滤镜输出的图像 ->得到一个合并之后的图像
5.赋给UIImageView对象进行显示
6.如果想使用滤镜链 可以再次叠加效果

以下是全部代码:

@interface ViewController ()<UIImagePickerControllerDelegate,UINavigationControllerDelegate>
{
   UIImageView *imageView;
}
@end
imageView=[[UIImageView alloc]initWithFrame:self.view.frame];
    imageView.image=[UIImage imageNamed:@"舒畅.jpg"];
    imageView.contentMode=2;
    [self.view addSubview:imageView];
    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    button.frame = CGRectMake(0, 100, 100, 30);
    [button setTitle:@"试试" forState:UIControlStateNormal];
    button.backgroundColor = [UIColor brownColor];
    [button addTarget:self action:@selector(addFilter) forControlEvents:UIControlEventTouchUpInside];
    button.showsTouchWhenHighlighted=YES;
    
    [self.view addSubview:button];
    
    UIButton *button1 = [UIButton buttonWithType:UIButtonTypeCustom];
    button1.frame = CGRectMake(100, 100, 200, 30);
    button1.center = CGPointMake([UIScreen mainScreen].bounds.size.width / 2.0f, 120);
    [button1 setTitle:@"滤镜链" forState:UIControlStateNormal];
    [button1 setTitleColor:[UIColor colorWithRed:102/255.0f green:153/255.0f blue:0.0f alpha:1] forState:UIControlStateNormal];
    [button1.titleLabel setFont:[UIFont systemFontOfSize:12]];
    [button1.layer setCornerRadius:5];
    [button1.layer setBorderColor:[UIColor colorWithRed:102/255.0f green:153/255.0f blue:0.0f alpha:1].CGColor];
    [button1.layer setBorderWidth:1.0f];
    [button1 addTarget:self action:@selector(addcolor) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:button1];
-(void)addFilter{
    //1.输入的原图
    CIImage *inputImage = [CIImage imageWithCGImage:imageView.image.CGImage];
    
    //2.滤镜
    CIFilter *filter=[CIFilter filterWithName:@"CIBumpDistortion"];
    //kCIInputImageKey通过打印可以设置的属性里面得到可以设置inputImage->在接口文件里面 查找到的一个key
//        NSLog(@"==%@",[CIFilter filterNamesInCategory:kCICategoryColorEffect]);
    [filter setValue:inputImage forKey:kCIInputImageKey];
    //设置凹凸效果半径,越大越明显
    [filter setValue:@500 forKey:kCIInputRadiusKey];
    //设置中心点 CIVector:表示X Y 坐标的类
    [filter setValue:[CIVector vectorWithX:212 Y:300] forKey:kCIInputCenterKey];
    //3.CIContext合并原图和滤镜效果
    CIImage *outPutImage=filter.outputImage;
    CIContext *context=[CIContext contextWithOptions:nil];
    //合并成一个包含原图 和滤镜效果的图像
    //1.image->滤镜输出的图像
    //2.fromRect->合成之后图像的尺寸:图像.extent
    CGImageRef imageRef=[context createCGImage:outPutImage fromRect:outPutImage.extent];
    imageView.image=[UIImage imageWithCGImage:imageRef];
}

颜色效果

-(void)addcolor{
    //1.输入的原图
    CIImage *inputImage = [CIImage imageWithCGImage:imageView.image.CGImage];
    
    //2.滤镜
    //kCIInputImageKey为command 点击CIFilter选中的一个效果
    //输出获得效果
        NSLog(@"==%@",[CIFilter filterNamesInCategory:kCICategoryColorEffect]);
    //拷贝选择其中的某一个效果
    CIFilter *filter=[CIFilter filterWithName:@"CIColorMonochrome"];
    NSLog(@"%@",filter.attributes);
    //kCIInputImageKey通过打印可以设置的属性里面得到可以设置inputImage->在接口文件里面 查找到的一个key
    [filter setValue:inputImage forKey:kCIInputImageKey];
    
    [filter setValue:[CIColor colorWithRed:0.9839 green:0.4832 blue:1.0 alpha:1.0] forKey:kCIInputColorKey];
    [filter setValue:@0.3 forKey:kCIInputIntensityKey];
    //3.CIContext合并原图和滤镜效果
    CIImage *outPutImage=filter.outputImage;
    /*
    CIContext *context=[CIContext contextWithOptions:nil];
    //合并成一个包含原图 和滤镜效果的图像
    //1.image->滤镜输出的图像
    //2.fromRect->合成之后图像的尺寸:图像.extent
    CGImageRef imageRef=[context createCGImage:outPutImage fromRect:outPutImage.extent];
    imageView.image=[UIImage imageWithCGImage:imageRef];*/
    [self addFilterLinkerWithImage:outPutImage];

}

再次添加滤镜形成滤镜链

-(void)addFilterLinkerWithImage:(CIImage *)image{
    CIFilter *filter=[CIFilter filterWithName:@"CISepiaTone"];
    [filter setValue:image forKey:kCIInputImageKey];
    [filter setValue:@0.3 forKey:kCIInputIntensityKey];
    CIContext *context=[CIContext contextWithOptions:nil];
    CIImage *outPutImage=filter.outputImage;
    //合并成一个包含原图 和滤镜效果的图像
    //1.image->滤镜输出的图像
    //2.fromRect->合成之后图像的尺寸:图像.extent
    CGImageRef imageRef=[context createCGImage:outPutImage fromRect:outPutImage.extent];
    imageView.image=[UIImage imageWithCGImage:imageRef];
    
    //    把添加好滤镜效果的图片 保存到相册
    //    不可以直接保存 outputImage->这是一个没有把滤镜效果 和 原图 合成的图像
    UIImageWriteToSavedPhotosAlbum(imageView.image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,684评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,143评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,214评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,788评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,796评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,665评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,027评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,679评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,346评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,664评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,766评论 1 331
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,412评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,015评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,974评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,073评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,501评论 2 343

推荐阅读更多精彩内容