服务器之家

服务器之家 > 正文

iOS 对当前webView进行截屏的方法

时间:2021-03-15 15:48     来源/作者:iOS开发网

UIWebView和WKWebView的截屏有所区别:

UIWebView:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
func getImage(context: ServiceExecuteContext) -> UIImage {
    //创建一个基于位图的图形上下文并指定大小
    UIGraphicsBeginImageContextWithOptions(context.fromViewController.webView.bounds.size, true, 0)
    //renderInContext呈现接受者及其子范围到指定的上下文
    context.fromViewController.webView.layer.renderInContext(UIGraphicsGetCurrentContext()!)
    //返回一个基于当前图形上下文的图片
    let image = UIGraphicsGetImageFromCurrentImageContext()
    //移除栈顶的基于当前位图的图形上下文
    UIGraphicsEndImageContext()
     
    //let imagRef = CGImageCreateWithImageInRect((image?.CGImage)!, context.fromViewController.webView.bounds)
    //let newImage = UIImage.init(CGImage: imagRef!)
    //UIImageWriteToSavedPhotosAlbum(newImage, nil, nil, nil);//保存图片到照片库
    return image!
  }

UIGraphicsBeginImageContext()方法传入唯一参数,是一个CGSize变量,用来指定图形context的大小,所以获取屏幕截图的时候这个size该是屏幕的大小。其实了解了这个过程,就知道这个方法可以获取任意区域的截图,当然是必须当前页面的一部分。你需要截取哪个view的图像,就让这个view的layer调用renderInContext把图形渲染进当前图形context。

WKWebView:

当我尝试去截取WKWebView的图。截图的结果返回给我的就仅仅只是一张背景图, 显然截图失败。通过搜索StackOverflow和Google, 我发现WKWebView并不能简单的使用layer.renderInContext的方法去绘制图形。如果直接调用layer.renderInContext需要获取对应的Context, 但是在WKWebView中执行UIGraphicsGetCurrentContext()的返回结果是nil

StackOverflow提供了一种解决思路是使用UIView的drawViewHierarchyInRect方法去截取屏幕视图。通过直接调用WKWebView的drawViewHierarchyInRect方法(afterScreenUpdates参数必须为true), 可以成功的截取WKWebView的屏幕内容

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
func getImage(context: ServiceExecuteContext) -> UIImage {
     
    UIGraphicsBeginImageContextWithOptions(context.fromViewController.webView.bounds.size, true, 0)
    for subView: UIView in context.fromViewController.webView.subviews {
      subView.drawViewHierarchyInRect(subView.bounds, afterScreenUpdates: true)
    }
    //UIApplication.sharedApplication().keyWindow?.layer.renderInContext(UIGraphicsGetCurrentContext()!)
    let image = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()
     
    //let imagRef = CGImageCreateWithImageInRect((image?.CGImage)!, context.fromViewController.webView.bounds)
    //let newImage = UIImage.init(CGImage: imagRef!)
     
    return image!
  }

以上这篇iOS 对当前webView进行截屏的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部