- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我做错了什么......?
在 iOS 上,我想拍摄完整网页的快照。在 iOS 11 之前,如果不处理一大堆逻辑来滚动 WKWebView
的 scrollView
等,这是不可能的。
以下错误已报告给 Webkit 并已修复:https://bugs.webkit.org/show_bug.cgi?id=161450
导致此更改:https://trac.webkit.org/changeset/212929/webkit
这现在为我们在 iOS 11 上提供了一个很好的 API 来拍摄 WKWebView
内容的快照:https://developer.apple.com/documentation/webkit/wkwebview/2873260-takesnapshotwithconfiguration
这一切都很棒,除了在设备上使用此方法时我根本无法获取快照。在模拟器中运行该应用程序时,效果非常好。
我在下面添加了两张图片以供比较。两者都是使用 takeSnapshotWithConfiguration:completionHandler:
返回的图像,但其中大部分是空白的。
我试过 web View 的 frame
、配置等,但没有成功。
我在想,也许 Simulator 链接到 WebKit 的 macOS 版本,并且不知何故它在那里工作得很好。还有一个问题是 WKSnapshotConfiguration
header 似乎也没有在 Swift 中公开,因此我不得不添加一个导入它的桥接 header 。
这里有一个示例项目供所有好奇的人使用:https://github.com/runmad/WebKitSnapshotTest
10 月 20 日更新:
所以这修复了它,但这是一个讨厌的 hack:
func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {
// webView.scrollView.contentSize == .zero initially, so put in a delay.
// It still may be .zero, though. In that case we'll just call the
// delegate method again.
let deadlineTime = DispatchTime.now() + .milliseconds(300)
DispatchQueue.main.asyncAfter(deadline: deadlineTime) {
guard webView.scrollView.contentSize.height > 0 else {
self.webView(webView, didFinish: navigation)
return
}
// So this works... If you set the .frame of the webView
// to that of the just loaded .scrollView and then load the
// same URL again, the resulting .frame and .scrollView will
// be the same size and the image render on a device will be
// the correct size.
guard self.hasLoadedOnce else {
webView.frame = CGRect(x: self.view.bounds.width, y: 0, width: self.view.bounds.width, height: webView.scrollView.contentSize.height)
webView.load(URLRequest(url: URL(string: "https://www.apple.com")!))
self.hasLoadedOnce = true
return
}
webView.snapshotWebView(completionHandler: { (image, _) in
self.updateWith(image)
})
}
}
那么几个问题:
(asyncAfter
我已经知道这个并且里面有那个)必须为快照添加延迟,因为 scrollView
仍然可能 .zero
一点点
将 WKWebView
的框架大小设置为正确的 scrollView
大小不起作用
设置框架,然后重新加载 WKWebView
,使其达到真实大小即可
03/11 更新:
我的雷达 (35094298) 今天被骗到了 33812691并关闭,这意味着 Apple 至少意识到了这个问题。
最佳答案
swift 4
这是对我有用的(注意:我使用了提供的示例项目的扩展)。
在 webView(didFinish navigation) 里面我用 JS 找到了内容的宽度和高度。然后,我设置了一个全局 rect
变量,以便稍后在按下按钮时将其传递给 snapshot()
。在设置约束后包含在以下代码中时,我无法使 snapshot()
工作。
func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {
// To get the constraints properly set for preparation for the snapshot, the setup must be performed here.
self.webView.evaluateJavaScript("document.readyState", completionHandler: { (complete, error) in
if complete != nil {
self.webView.evaluateJavaScript("document.body.scrollHeight", completionHandler: { (height, error) in
guard let contentHeight = height as? CGFloat else { print("Content height could not be obtained"); return }
self.webView.evaluateJavaScript("document.body.scrollWidth", completionHandler: { (width, error) in
let contentWidth = width as! CGFloat
self.rect = CGRect(x: 0, y: 0, width: contentWidth, height: contentHeight)
self.heightConstraint.constant = contentHeight
// Because it is known that the web page has completely loaded, it is safe to enable a snapshot to be taken
self.takeSnapButton.isEnabled = true
})
})
}
})
}
对我来说,拍摄快照()必须是一个新 Action ,在我的例子中,一个单独的按钮按下。我的结论是需要设置约束并重新加载 View 以使内容正确调整大小。
@IBAction func takeSnapButton(_ sender: Any) {
// It is probably safe to assume that there is definitely an image at this point but to be extra
guard let image = self.webView.snapshot(of: self.rect) else { print("An image could not be taken"); return}
}
关于ios - WKWebKit takeSnapshot(with snapshotConfiguration :) not working on iOS device,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46842384/
我正在测试 monkeyrunner 并使用下面的 .py 文件进行屏幕截图。 截屏图像已生成,但有时会在“resulet = device.takeSnapshot()”中发生错误 不知道是什么问题
本文整理了Java中org.apache.zookeeper.server.ZooKeeperServer.takeSnapshot()方法的一些代码示例,展示了ZooKeeperServer.tak
react 原生:https://github.com/expo/react-native/archive/sdk-42.0.0.tar.gz react :16.13.1 react 原生 map
我在 javascript 评估的完成处理程序中截取 WKVebView 的屏幕截图: func loadPage(){ let fileURL = URL(fileURLWithPath:
我做错了什么......? 在 iOS 上,我想拍摄完整网页的快照。在 iOS 11 之前,如果不处理一大堆逻辑来滚动 WKWebView 的 scrollView 等,这是不可能的。 以下错误已报告
我正在尝试使用在 docker 容器上运行的 nodetool 快照工具获取 cassandra 数据库的快照。更准确地说,我使用以下命令 nodetool -h cassandra -p 9999
我是一名优秀的程序员,十分优秀!