3

我一直在尝试将图像从 URL 设置为 QLabel。但我没有运气。这是我现在尝试做的事情:

import urllib, cStringIO
img_file = cStringIO.StringIO(urllib.urlopen(image_url).read())
image_file = Image.open(img_file)

然后将其设置为 QImage:

final_image = QImage(image_file)

self.emit(SIGNAL("finished(QImage)"),
    final_image
)

图像正在从线程传递回主 GUI 中的方法。

def set_image(self, final_image):
    self.main_picture_pixmap = QPixmap.fromImage(final_image).scaled(
        QSize(self.picture_label.size()), 
        Qt.KeepAspectRatio, 
        Qt.FastTransformation
    )
    self.picture_label.setPixmap(self.main_picture_pixmap)

这样做我得到错误:

QPixmap::scaled: Pixmap is a null pixmap

有没有办法解决这个问题,或者用不同的方法来解决这个问题?

4

2 回答 2

7

将图像从 url 加载到图标中的简单公式。

from PyQt4.QtGui import QPixmap, QIcon
import urllib

url = 'http://example.com/image.png'    
data = urllib.urlopen(url).read()
pixmap = QPixmap()
pixmap.loadFromData(data)
icon = QIcon(pixmap)
于 2013-11-28T19:13:19.643 回答
5

QImage.load采用文件名,而不是图像数据。如果你想这样做,你需要使用QImage.loadFromData.

于 2012-06-17T21:15:40.683 回答