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 ()
{
   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);
}

你可能感兴趣的:(iOS技术文档No.9 AppKit_CIImage、CIFilter滤镜效果的简单使用)