如何在 Qt 中管理 QWebView 内容?
我有一个加载网页的 QWebView 对象。我需要将页面中的图片保存到内存中。图片的 URL 是动态的,但它遵循正则表达式。
我如何使用 QWebView 做到这一点?
I have a QWebView object loading a web page. I need to save a picture from the page to the memory. The URL of the picture is dynamic, but it follows a regexp.
How do I do that with QWebView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,您无法使用
QWebView
保存图像。但您可能对QWebFrame::toHtml
感兴趣,使用它您可以获取 HTML 中的所有内容。然后你需要regexp来获取图像URL,获取它,最后保存它。解决方案位于此处。
Sure, you can't save image with
QWebView
. But you might be interested inQWebFrame::toHtml
, using which you can obtain all the content in HTML.Then you need to regexp to obtain image URL, fetch it, and finally save it. Solution is here.