码迷,mamicode.com
首页 > 其他好文 > 详细

UIImage-Helpers截屏、毛玻璃(模糊)以及根据颜色生成图片

时间:2015-05-03 14:37:55      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

demo地址:http://code4app.com/ios/UIImage-Helpers/52c502b6cb7e84a81a8b558c

 

1、模糊图片: 

#import "UIImage+Blur.h" 
... 
// jpeg quality image data 
float quality = .00001f; 
// intensity of blurred 
float blurred = .5f; 
NSData *imageData = UIImageJPEGRepresentation([self.imageViewNormal image], quality); 
UIImage *blurredImage = [[UIImage imageWithData:imageData] blurredImage:blurred]; 
self.imageViewBlurred.image = blurredImage; 

2、屏幕截图: 
#import "UIImage+Screenshot.h" 
... 
UIImage *image = [UIImage screenshot]; 
self.imageView.image = image; 

3、根据颜色生成图片: 
#import "UIImage+ImageWithColor.h" 
... 
UIColor *purpleColor = [UIColor colorWithRed:.927f green:.264f blue:.03f alpha:1]; 
UIImage *image = [UIImage imageWithColor:purpleColor]; 
[self.navigationBar setBackgroundImage:image forBarMetrics:UIBarMetricsDefault];

UIImage-Helpers截屏、毛玻璃(模糊)以及根据颜色生成图片

标签:

原文地址:http://www.cnblogs.com/huangzs/p/4473911.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!