我不需要QWebView
中加载的页面中的图片。举一个最小的例子,我该怎么做?:
import sys
from PyQt4 import QtCore, QtGui, QtWebKit
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
w = QtWebKit.QWebView()
url = QtCore.QUrl("http://www.google.com")
w.load(url)
w.show()
我只找到了this。但是,QtWebkit似乎无法正常工作。
答案 0 :(得分:6)
好的,我找到了QWebSettings::AutoLoadImages
。
所以,基本上:
# before loading the url:
st=w.settings()
st.setAttribute(st.AutoLoadImages,False)
会做到这一点。