美文网首页
iOS屏幕截图的方法

iOS屏幕截图的方法

作者: 黑暗森林的歌者 | 来源:发表于2016-07-10 19:32 被阅读372次

不用 2d截图 直接截图

-(UIImage *)screenShots
{
     //截取整个backview
    UIGraphicsBeginImageContext(self.backgroundView.bounds.size);
    [self.backgroundView.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *sourceImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();

//在截图上画下自己需要的位置及大小
    UIGraphicsBeginImageContext(self.mainContentView.frame.size);
    [sourceImage drawAtPoint:CGPointMake(0, self.mainContentView.bounds.size.height - self.view.bounds.size.height)];
  UIImage * image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsGetCurrentContext();

       return image;
}

上面的方法会压缩图片,用下面的方法可以设置是否缩放图片

UIGraphicsBeginImageContextWithOptions( self.view.frame.size, NO, 0.0);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *sourceImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

相关文章

网友评论

      本文标题:iOS屏幕截图的方法

      本文链接:https://www.haomeiwen.com/subject/ynmdjttx.html