我一直在尝试将图像从 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
有没有办法解决这个问题,或者用不同的方法来解决这个问题?