解析HTML使用QWebElement,如何提取图像



我很难使用QWebElement。作为练习,我想从http://www.google.com页面捕获"谷歌"徽标。图像在<div id="hplogo" ...>中,但我不知道如何提取。如何在以下代码中使用"doc"QWebElement ?("CSS选择器"对我来说是晦涩难懂的术语)。谢谢你。

from PyQt4.QtGui import QApplication
from PyQt4.QtWebKit import QWebView
from PyQt4.QtCore import QUrl
app = QApplication([])
view = QWebView()
view.load(QUrl("http://google.com"))
view.show()
doc = view.page().currentFrame().documentElement()   # run this after 'loadFinished'

要获取"Google"标志的URL,执行:

elem = doc.findFirst("div#hplogo")
qstring = elem.attribute('style')
regexp = QRegExp("^(.*:)?url((.*))")
if regexp.indexIn(qstring) > -1:
    imageURL = regexp.capturedTexts()[-1]

返回imageURL = "/images/srpr/logo1w.png"。在这种情况下有必要使用regexp,因为URL是字符串的一部分。要获取图像并将其显示在标签上,请执行:

request = QNetworkRequest(QUrl("http://www.google.com/images/srpr/logo1w.png"))
reply = view.page().networkAccessManager().get(request)
byte_array = reply.readAll()
image = QImage()
image.loadFromData(byte_array)
label = QLabel()
label.setPixmap(QPixmap(image))
label.show()

您只需要提取包含图像的<img/> HTML标签的src属性,然后使用src属性创建图像。

imgTags = doc.findAll("img")
imgRightTag = QWebElement()
# Find the right <img/> tag and put it in imgRightTag
imgURL = "http://www.google.com" + imgRightTag.attribute("src")
image = QImage(imgURL)

相关内容

  • 没有找到相关文章

最新更新