如何告诉QWebPage不加载图像?
我正在使用 QWebPage 加载所需的网站页面。但 QWebPage 加载所有附加资源:图像、CSS 等。 有什么方法可以呈现这种行为并取消图像加载?
我唯一的想法是 - 编写自定义 QNetworkConnectionManager,它将返回一些虚拟图片而不是请求的图片。但这看起来有点复杂。
I'm using QWebPage to load needed site page. But QWebPage loading all additional resources: images, csses, and so on.
Is there any way to present this behavior and cancel loading of images?
Only idea that I have - to write custom QNetworkConnectionManager, which will return some dummy picture instead of requested. But this looks a bit of complicated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要关闭 AutoLoadImages:
http://doc.trolltech.com/ 4.4/qwebsettings.html
使用 QWebSettings::AutoLoadImages 属性。
You want to turn off the AutoLoadImages:
http://doc.trolltech.com/4.4/qwebsettings.html
Using the QWebSettings::AutoLoadImages attribute.