91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS如何實現模糊效果

發布時間:2021-07-07 12:19:16 來源:億速云 閱讀:343 作者:小新 欄目:移動開發

這篇文章主要為大家展示了“iOS如何實現模糊效果”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“iOS如何實現模糊效果”這篇文章吧。

具體內容如下

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

重點理解CIImage,CIFilter,CIContext,CGImageRef

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

- (void)viewDidLoad {
 [super viewDidLoad];

 // 加載一張圖片
 UIImage *image = [UIImage imageNamed:@"che"];

 /**************CoreImage部分**************/

 // 1.創建CIImage
 CIImage *ciImage = [[CIImage alloc] initWithImage:image];

 // 2.創建濾鏡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];

 // 添加展示的背景,用于顯示動態模糊(背景能夠滾動,便于查看動態的模糊)
 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.創建模糊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.創建出子模糊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如何實現模糊效果

以上是“iOS如何實現模糊效果”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

ios
AI

商城县| 营口市| 兴和县| 丹东市| 宜兴市| 新田县| 庆云县| 贵港市| 饶河县| 马山县| 青冈县| 天全县| 阿拉善左旗| 垫江县| 宜兰县| 辉县市| 阿荣旗| 噶尔县| 东乡| 夏津县| 黄骅市| 凉城县| 蓬莱市| 阳东县| 方城县| 万年县| 龙井市| 永修县| 饶河县| 江津市| 江山市| 丽江市| 永顺县| 环江| 潮安县| 洪泽县| 乌苏市| 宿松县| 台中县| 万年县| 昆山市|