在我的项目中,我使用了这种机制。
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")))
但我无法显示图像。我该如何解决这个问题?