PyQt:如何从QThread处理QPixmaps?

时间:2011-01-06 02:29:13

标签: pyqt4 qthread qpixmap

这是我在使用PyQT时遇到的最大麻烦:我已经为我的应用程序拼了一个缩略图线程(我必须缩略图大量的图像),看起来它会起作用(而且它< em>几乎确实如此)。每当我从我的帖子发送SIGNAL时,我的主要问题是此错误消息:

QPixmap: It is not safe to use pixmaps outside the GUI thread

我无法弄清楚如何解决这个问题。我已尝试通过QIcon传递SIGNAL,但仍会产生相同的错误。如果它有帮助,这里是处理这些东西的代码块:

Thumbnailer类:

class Thumbnailer(QtCore.QThread):
  def __init__(self, ListWidget, parent = None):
    super(Thumbnailer, self).__init__(parent)
    self.stopped = False
    self.completed = False
    self.widget = ListWidget

  def initialize(self, queue):
    self.stopped = False
    self.completed = False
    self.queue = queue

  def stop(self):
    self.stopped = True

  def run(self):
    self.process()
    self.stop()

  def process(self):
    for i in range(self.widget.count()):
      item = self.widget.item(i)

      icon = QtGui.QIcon(str(item.text()))
      pixmap = icon.pixmap(72, 72)
      icon = QtGui.QIcon(pixmap)
      item.setIcon(icon)

调用线程的部分(当一组图像被放到列表框中时发生):

  self.thread.images.append(f)

  item = QtGui.QListWidgetItem(f, self.ui.pageList)
  item.setStatusTip(f)

  self.thread.start()

我不知道如何处理这类东西,因为我只是一个GUI新手;)

感谢所有人。

1 个答案:

答案 0 :(得分:9)

经过多次尝试,我终于明白了。我无法在非GUI线程中使用QIconQPixmap,因此我必须使用QImage代替,因为传输正常。

这是神奇的代码:

摘自thumbnailer.py QThread班级:

  icon = QtGui.QImage(image_file)
  self.emit(QtCore.SIGNAL('makeIcon(int, QImage)'), i, icon)

makeIcon()功能:

  def makeIcon(self, index, image):
    item = self.ui.pageList.item(index)
    pixmap = QtGui.QPixmap(72, 72)
    pixmap.convertFromImage(image) #   <-- This is the magic function!
    icon = QtGui.QIcon(pixmap)
    item.setIcon(icon)

希望这可以帮助其他人尝试制作图像缩略图线程;)