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

截图保存到相册

时间:2015-06-08 13:15:52      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:


   // 1.截图

    UIImage *image = [UIImage captureWithView:self.paintView];

    

    // 2.保存到图片

    UIImageWriteToSavedPhotosAlbum(image, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);

/**

 保存图片操作之后就会调用

 */

- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo

{

    if (error) { // 保存失败

        [MBProgressHUD showError:@"保存失败"];

    } else { // 保存成功

        [MBProgressHUD showSuccess:@"保存成功"];

    }

}

 



+ (instancetype)captureWithView:(UIView *)view { // 1.开启上下文 UIGraphicsBeginImageContextWithOptions(view.frame.size, NO, 0.0); // 2.将控制器view的layer渲染到上下文 [view.layer renderInContext:UIGraphicsGetCurrentContext()]; // 3.取出图片 UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext(); // 4.结束上下文 UIGraphicsEndImageContext(); return newImage; }

 

截图保存到相册

标签:

原文地址:http://www.cnblogs.com/yinshenge/p/4560486.html

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