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

ios 截屏

时间:2014-07-27 23:21:19      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:os   io   div   res   size   ios   ui   text   

把当前屏幕作为获取成为图片

- (UIImage *)rn_screenshot {
    UIGraphicsBeginImageContext(self.bounds.size);
    [self.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    NSData *imageData = UIImageJPEGRepresentation(image, 0.75);
    image = [UIImage imageWithData:imageData];
    return image;
}

 

ios 截屏,布布扣,bubuko.com

ios 截屏

标签:os   io   div   res   size   ios   ui   text   

原文地址:http://www.cnblogs.com/shidaying/p/3872011.html

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