介紹
1溪北、框架介紹
(1)CoreImage桐绒,不用導(dǎo)入
(2)是一個(gè)圖像框架 它基于OpenGL頂層創(chuàng)建 底層則用著色器來(lái)處理圖像
(3)它利用了GPU基于硬件加速來(lái)處理圖像
(4)CoreImage中有很多濾鏡
(5)它們能夠一次給予一張圖像或者視頻幀多種視覺(jué)效果 -> 濾鏡鏈
(6)而且濾鏡可以連接起來(lái)組成一個(gè)濾鏡鏈 把濾鏡效果疊加起來(lái)處理圖像
2、類介紹
(1)cIImage:保存圖像數(shù)據(jù)的類
CGImageRef:圖像中的數(shù)據(jù)
(2)CIFilter:濾鏡類
圖片屬性進(jìn)行細(xì)節(jié)處理的類
它對(duì)于所有的像素進(jìn)行操作 用鍵值(KVC)來(lái)設(shè)置
(3)CIContext:上下文是實(shí)現(xiàn)對(duì)圖像處理的具體對(duì)象
濾鏡對(duì)象輸出的圖像并不是合成之后的圖像之拨,需要使用圖像處理的上下文合并輸出的圖像
3茉继、效果介紹 100+效果可以通過(guò)attributes查找需要設(shè)置的內(nèi)容
按效果分類:
kCICategoryDistortionEffect 扭曲效果,比如bump蚀乔、旋轉(zhuǎn)烁竭、hole
kCICategoryGeometryAdjustment 幾何開著調(diào)整,比如仿射變換吉挣、平切派撕、透視轉(zhuǎn)換
kCICategoryCompositeOperation 合并,比如源覆蓋(source over)睬魂、最小化终吼、源在頂(source atop)、色彩混合模式
kCICategoryHalftoneEffect Halftone效果氯哮,比如screen衔峰、line screen、hatched
kCICategoryColorAdjustment 色彩調(diào)整,比如伽馬調(diào)整垫卤、白點(diǎn)調(diào)整、曝光
kCICategoryColorEffect 色彩效果出牧,比如色調(diào)調(diào)整穴肘、posterize
kCICategoryTransition 圖像間轉(zhuǎn)換,比如dissolve舔痕、disintegrate with mask评抚、swipe
kCICategoryTileEffect 瓦片效果,比如parallelogram伯复、triangle
kCICategoryGenerator 圖像生成器慨代,比如stripes、constant color啸如、checkerboard
kCICategoryGradient 漸變侍匙,比如軸向漸變、仿射漸變叮雳、高斯?jié)u變
kCICategoryStylize 風(fēng)格化想暗,比如像素化、水晶化
kCICategorySharpen 銳化帘不、發(fā)光
kCICategoryBlur 模糊说莫,比如高斯模糊、焦點(diǎn)模糊寞焙、運(yùn)動(dòng)模糊
按使用場(chǎng)景分類:
kCICategoryStillImage 用于靜態(tài)圖像
kCICategoryVideo 用于視頻
kCICategoryInterlaced 用于交錯(cuò)圖像
kCICategoryNonSquarePixels 用于非矩形像素
kCICategoryHighDynamicRange 用于HDR
使用步驟:
1.實(shí)例CIImage -> 先把UIImage->CGImageRef -> CIImage
2.創(chuàng)建CIFilter濾鏡并給濾鏡設(shè)置屬性(KVC)
3.創(chuàng)建CIContext上下文
4.合并濾鏡輸出的圖像 ->得到一個(gè)合并之后的圖像
5.賦給UIImageView對(duì)象進(jìn)行顯示
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通過(guò)打印可以設(shè)置的屬性里面得到可以設(shè)置inputImage->在接口文件里面 查找到的一個(gè)key
// NSLog(@"==%@",[CIFilter filterNamesInCategory:kCICategoryColorEffect]);
[filter setValue:inputImage forKey:kCIInputImageKey];
//設(shè)置凹凸效果半徑储狭,越大越明顯
[filter setValue:@500 forKey:kCIInputRadiusKey];
//設(shè)置中心點(diǎn) CIVector:表示X Y 坐標(biāo)的類
[filter setValue:[CIVector vectorWithX:212 Y:300] forKey:kCIInputCenterKey];
//3.CIContext合并原圖和濾鏡效果
CIImage *outPutImage=filter.outputImage;
CIContext *context=[CIContext contextWithOptions:nil];
//合并成一個(gè)包含原圖 和濾鏡效果的圖像
//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 點(diǎn)擊CIFilter選中的一個(gè)效果
//輸出獲得效果
NSLog(@"==%@",[CIFilter filterNamesInCategory:kCICategoryColorEffect]);
//拷貝選擇其中的某一個(gè)效果
CIFilter *filter=[CIFilter filterWithName:@"CIColorMonochrome"];
NSLog(@"%@",filter.attributes);
//kCIInputImageKey通過(guò)打印可以設(shè)置的屬性里面得到可以設(shè)置inputImage->在接口文件里面 查找到的一個(gè)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];
//合并成一個(gè)包含原圖 和濾鏡效果的圖像
//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;
//合并成一個(gè)包含原圖 和濾鏡效果的圖像
//1.image->濾鏡輸出的圖像
//2.fromRect->合成之后圖像的尺寸:圖像.extent
CGImageRef imageRef=[context createCGImage:outPutImage fromRect:outPutImage.extent];
imageView.image=[UIImage imageWithCGImage:imageRef];
// 把添加好濾鏡效果的圖片 保存到相冊(cè)
// 不可以直接保存 outputImage->這是一個(gè)沒(méi)有把濾鏡效果 和 原圖 合成的圖像
UIImageWriteToSavedPhotosAlbum(imageView.image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
}