国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > iOS > 正文

iOS模糊效果的實現方法

2019-10-21 18:48:57
字體:
來源:轉載
供稿:網友

本文實例為大家分享了iOS模糊效果的3種方法,供大家參考,具體內容如下

方案一:利用系統(tǒng)的CoreImage(濾鏡)

重點理解CIImage,CIFilter,CIContext,CGImageRef

濾鏡處理的過程比較慢,會造成加載圖片緩慢的現象(等一會才看到圖片),盡量放到子線程執(zhí)行

 

- (void)viewDidLoad { [super viewDidLoad]; // 加載一張圖片 UIImage *image = [UIImage imageNamed:@"che"]; /**************CoreImage部分**************/ // 1.創(chuàng)建CIImage CIImage *ciImage = [[CIImage alloc] initWithImage:image]; // 2.創(chuàng)建濾鏡CIFilter CIFilter *blurFilter = [CIFilter filterWithName:@"CIGaussianBlur"]; // 2.1.將CIImage輸入到濾鏡中 [blurFilter setValue:ciImage forKey:kCIInputImageKey]; // 可以通過該方法查看我們可以設置的值(如模糊度等) NSLog(@"%@", [blurFilter attributes]); // 2.2設置模糊度 [blurFilter setValue:@(2) forKey:@"inputRadius"]; // 2.3將處理好的圖片輸出 CIImage *outCiImage = [blurFilter valueForKey:kCIOutputImageKey]; // 3.CIContext(option參數為nil代表用CPU渲染,若想用GPU渲染請查看此參數) CIContext *context = [CIContext contextWithOptions:nil]; // 4.獲取CGImage句柄 CGImageRef outCGImage = [context createCGImage:outCiImage fromRect:[outCiImage extent]]; // 5.獲取最終的圖片 UIImage *blurImage = [UIImage imageWithCGImage:outCGImage]; // 6.釋放CGImage CGImageRelease(outCGImage); /*****************************************/ UIImageView *imageV = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 750 / 2, 1334 / 2)]; imageV.image = blurImage; imageV.center = self.view.center; [self.view addSubview:imageV];}

方案二:利用UIImage+ImageEffects分類

將UIImage+ImageEffects.h和UIImage+ImageEffects.m文件加載進工程
包含UIImage+ImageEffects.h
UIImage+ImageEffects文件路徑

#import "ViewController.h"#import "UIImage+ImageEffects.h"- (void)viewDidLoad { [super viewDidLoad]; // 原始圖片 UIImage *sourceImage = [UIImage imageNamed:@"che"]; // 對圖片進行模糊處理 UIImage *blurImage = [sourceImage blurImageWithRadius:10]; // 加載模糊處理后的圖片 UIImageView *imageV = [[UIImageView alloc] initWithImage:blurImage]; [self.view addSubview:imageV];}

方案三:利用UIVisualEffectView(iOS8)

#import "ViewController.h"@interface ViewController ()/** 背景 */@property (nonatomic, strong) UIScrollView *scrollView;@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // 添加展示的背景,用于顯示動態(tài)模糊(背景能夠滾動,便于查看動態(tài)的模糊) self.scrollView = [[UIScrollView alloc] initWithFrame:self.view.bounds]; UIImageView *imageV = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"fengjing"]]; self.scrollView.contentSize = imageV.image.size; self.scrollView.bounces = NO; [self.scrollView addSubview:imageV]; [self.view addSubview:self.scrollView]; /***************添加模糊效果***************/ // 1.創(chuàng)建模糊view UIVisualEffectView *effectView = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]]; // 2.設定模糊View的尺寸 effectView.frame = CGRectMake(0, 100, 375, 200); // 3.添加到view當中 [self.view addSubview:effectView]; /******************添加顯示文本******************/ UILabel *label = [[UILabel alloc] initWithFrame:effectView.bounds]; label.text = @"模糊效果"; label.font = [UIFont systemFontOfSize:40]; label.textAlignment = NSTextAlignmentCenter; /****************添加模糊效果的子view****************/ // 1.創(chuàng)建出子模糊view UIVisualEffectView *subEffectView = [[UIVisualEffectView alloc] initWithEffect:[UIVibrancyEffect effectForBlurEffect:(UIBlurEffect *)effectView.effect]]; // 2.設置子模糊view的尺寸 subEffectView.frame = effectView.bounds; // 3.將子模糊view添加到effectView的contentView上才能顯示 [effectView.contentView addSubview:subEffectView]; // 4.添加要顯示的view來達到特殊效果 [subEffectView.contentView addSubview:label];}@end

效果圖:

iOS,模糊效果

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持VEVB武林網。


注:相關教程知識閱讀請移步到IOS開發(fā)頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 辉南县| 乌拉特后旗| 阜平县| 江陵县| 彰化市| 赤水市| 澜沧| 肇庆市| 邵武市| 海城市| 监利县| 克什克腾旗| 麻阳| 建湖县| 高淳县| 鄂州市| 石首市| 沁源县| 临泉县| 高平市| 子长县| 延长县| 金沙县| 平阳县| 锦屏县| 白朗县| 大安市| 大冶市| 宜川县| 和硕县| 尚义县| 三明市| 永和县| 阳原县| 江达县| 常德市| 宁河县| 临颍县| 景泰县| 青州市| 永州市|