码迷,mamicode.com
首页 > 移动开发 > 详细

ios 把view生成image, 保持清晰度

时间:2014-09-23 14:44:54      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   os   ar   sp   on   c   ef   

#pragma mark 生成image

- (UIImage *)makeImageWithView:(UIView *)view

{

    CGSize s = view.bounds.size;

    // 下面方法,第一个参数表示区域大小。第二个参数表示是否是非透明的。如果需要显示半透明效果,需要传NO,否则传YES。第三个参数就是屏幕密度了,关键就是第三个参数。

    UIGraphicsBeginImageContextWithOptions(s, NO, [UIScreen mainScreen].scale);

    [view.layer renderInContext:UIGraphicsGetCurrentContext()];

    UIImage*image = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    return image;

}

ios 把view生成image, 保持清晰度

标签:style   color   io   os   ar   sp   on   c   ef   

原文地址:http://blog.csdn.net/alincexiaohao/article/details/39496821

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