UIView转UIImage(截屏,UIGraphicsBeginImageContextWithOptions函数的使用)

简介: <div class="multicntwrap" style="color:rgb(102,102,102); font-family:'Hiragino Sans GB W3','Hiragino Sans GB',Arial,Helvetica,simsun,u5b8bu4f53"> <div class="multicnt"> <h3 class="title pre fs1"

UIView转UIImage(截屏,UIGraphicsBeginImageContextWithOptions函数的使用)  

2012-11-06 13:56:59|  分类: iphone_dev_note|举报|字号 订阅

// 需要转成image的view:captureAndSaveView
UIGraphicsBeginImageContextWithOptions(captureAndSaveView.frame.size, NO, 1.0);  //NO,YES 控制是否透明
[captureAndSaveView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
// 生成后的image
目录
相关文章
UIImageView 图片自适应大小
UIImageView 图片自适应大小
163 0
UIImageView加上圆角
UIImageView加上圆角
51 0
将UIImage保存到相册
将UIImage保存到相册
69 0
|
缓存 iOS开发 程序员
|
UED 缓存 异构计算
UIImageView添加圆角的几种方法
喜欢我的可以关注收藏我的个人博客:RobberJJ 创建一个UIImageView对象: UIImageView * poImgView = [[UIImageView alloc] init]; 第一种方法 poImgView.
966 0