简体   繁体   English

在pyqt上显示图像

[英]Displaying an image on pyqt

I'm trying to display an image in pyqt for my coursework. 我正在尝试在pyqt中显示图像以进行我的课程。 I'm attempting this in the Handle Question sub routine. 我正在“处理问题”子例程中尝试此操作。 here's a sample of it 这是一个例子

class IntegrationQuestions(QtGui.QMainWindow):
    def __init__(self, parent = None):
        from equation import IntQuestion, IntAnswer
        QtGui.QDialog.__init__(self, parent)
        self.setWindowTitle('Simple Integration')
        self.setMinimumSize(265,400)

        self.lbl1 = QtGui.QLabel("Integrate the equation below",self)
        self.lbl1.move(0,0)
        self.lbl1.resize(200,20)

        self.lbl2 = QtGui.QLabel(pretty(IntQuestion[0], use_unicode = False), self)
        self.lbl2.resize(200, 80)
        self.lbl2.move(30,30)

        self.lbl3 = QtGui.QLabel("Sketch pad",self)
        self.lbl3.move(0,120)

        self.SketchPad = QtGui.QLineEdit(self)
        self.SketchPad.resize(250,150)
        self.SketchPad.move(0,150)

        self.lbl4 = QtGui.QLabel("Answer",self)
        self.lbl4.move(0,300)

        self.Answer = QtGui.QLineEdit(self)
        self.Answer.move(0,330)
        self.Answer.resize(250,20)


        self.next_question.clicked.connect(self.HandleQuestion)

this is where I'm attempting to add in a question 这是我尝试添加问题的地方

    def HandleQuestion(self):
        pic = QtGui.QLabel(self)
        pic.setPixmap(QtGui.QPixmap("Q107.png"))

        self.lbl3.move(0,190)
        self.SketchPad.resize(250,80)
        self.SketchPad.move(0,220)

You initialized everything properly, however you never set the label to be shown. 您已正确初始化了所有内容,但从未设置要显示的标签。

def HandleQuestion(self):
    pic = QtGui.QLabel(self)
    pic.setPixmap(QtGui.QPixmap("Q107.png"))

    pic.show() # You were missing this.

    self.lbl3.move(0,190)
    self.SketchPad.resize(250,80)
    self.SketchPad.move(0,220)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM