首页 > 移动平台 > 详细

iOS 学习笔记(截屏)

时间:2014-04-09 23:35:54      阅读:558      评论:0      收藏:0      [点我收藏+]

OC代码如下

 

- (UIImage *)captureScreen:(UIView *)mView size:(CGSize)mSize {

//    Creates a bitmap-based graphics context and makes it the current context

//创建一个位图,并成为当前的背景

    UIGraphicsBeginImageContext(mSize);

//    Renders the receiver and its sublayers into the specified context

//渲染给子layer提供一个特定的背景

    [mView.layer renderInContext:UIGraphicsGetCurrentContext()];

//    Returns an image based on the contents of the current bitmap-based graphics context

//返回一个当前背景下的位图

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

//    Removes the current bitmap-based graphics context from the top of the stack

//讲当前位图从堆中移除

    UIGraphicsEndImageContext();

    return image;

}

iOS 学习笔记(截屏),布布扣,bubuko.com

iOS 学习笔记(截屏)

原文:http://www.cnblogs.com/ericiOScnblogs/p/3654931.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!