我在Qt Creator中绘制了一个GUI,带有一个按钮,一个滑块和一些标签。
我正在尝试:按下按钮时,在终端上打印并在标签中打印滑块的修改值并显示图像。正如许多网页建议的那样,我试图通过使用像素图方法将图像显示到标签中。这是我的整个代码(GUI的结构在导入的mainwindow.ui文件中)
import sys
from PyQt4 import QtCore, QtGui, uic
qtCreatorFile = "mainwindow.ui"
Ui_MainWindow, QtBaseClass = uic.loadUiType(qtCreatorFile)
class myownGUI(QtGui.QMainWindow, Ui_MainWindow):
def __init__(self):
QtGui.QMainWindow.__init__(self)
Ui_MainWindow.__init__(self)
self.setupUi(self)
#button
self.Do_button.clicked.connect(self.action)
#slider
self.SLIDER.valueChanged[int].connect(self.SLIDER_update)
#"global" variable init. by callback
self.SLIDER_update()
#The button callback
def action(self):
print "DOING ACTION!"
print self.Slider
#trying to display the image in the Image_label
image = QtGui.QImage(QtGui.QImageReader(":/images/test.png").read())
self.Image_label.setPixmap(QtGui.QPixmap(image))
#self.Image_label.show() #unuseful command?
#Slider update callback
def SLIDER_update(self):
self.Slider= self.SLIDER.value()
if (self.Slider % 2 == 0): #even
self.Slider = self.Slider + 1
self.Slider_label.setText(str(self.Slider))
if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
window = myownGUI()
window.show()
sys.exit(app.exec_())
代码运行,它显示没有错误,但不显示图像。 我尝试了JPG和PNG图像。当图像在同一文件夹中时,我也尝试了简单的图像名称。
我的代码有什么问题? 还有另一种在GUI内用QT显示图像的方法(使用python)?
提前谢谢
使用:Ubuntu 14.04 / Qt版本4.8.6
我尝试在堆栈溢出中读取所有类似的问题。似乎我的问题是重复的,但似乎没有一个答案可以解决我的问题。
编辑:使用PRMoureu's syntax,当图片位于同一文件夹时,它也可以使用,例如
image = QtGui.QImage(QtGui.QImageReader("./test.png").read())
现在显示图像,只需重新调整图像。
答案 0 :(得分:1)
您应该使用其他路径语法调用图像:
image = QtGui.QImage(QtGui.QImageReader("./images/test.png").read())
或
image = QtGui.QImage(QtGui.QImageReader("images/test.png").read())