在Python中引用Image其他包

时间:2015-12-15 14:56:03

标签: python pyqt

在我的项目中,我使用了这种机制。

view/
   __init__.py
   forms/
      __init__.py
      someFile.py
   images/
      __init__.py
      someImage.png

我尝试在someFile.py中显示图像以引用someImage.png。我尝试了几个:

 self.label_8.setPixmap(QtGui.QPixmap(_fromUtf8("/view/images/someImage.png")))
 self.label_8.setPixmap(QtGui.QPixmap(_fromUtf8("view/images/someImage.png")))
 self.label_8.setPixmap(QtGui.QPixmap(_fromUtf8("images/someImage.png")))
 self.label_8.setPixmap(QtGui.QPixmap(_fromUtf8("someImage.png")))

但我无法显示图像。我该如何解决这个问题?

0 个答案:

没有答案