使用 QLabel 在 PyQt GUI 中显示 gif [英] Displaying gif in PyQt GUI using QLabel

查看:104
本文介绍了使用 QLabel 在 PyQt GUI 中显示 gif的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图在按下按钮后显示加载 gif.这是我目前拥有的代码

I am trying to display a loading gif after a button is pressed. This is the code I currently have

import sys
from PyQt4 import QtGui, QtCore
from PyQt4.QtCore import *
from PyQt4.QtGui import *

class MainWindow (QtGui.QMainWindow):
    def __init__(self, parent=None):
        super(MainWindow,self).__init__(parent)
        self.setGeometry(50,50,240,320)
        self.home()
    def home(self):
        but = QtGui.QPushButton("Example", self)#Creates the brew coffee button
        but.clicked.connect(self.gif_display)
        but.resize(200,80)
        but.move(20,50)

        self.show()
    def gif_display(self):
        l = QMovieLabel('loading.gif')
        l.show()

class QMovieLabel(QLabel):
    def __init__(self, fileName):
        QLabel.__init__(self)
        m = QMovie(fileName)
        m.start()
        self.setMovie(m)

    def setMovie(self, movie):
        QLabel.setMovie(self, movie)
        s=movie.currentImage().size()
        self._movieWidth = s.width()
        self._movieHeight = s.height()

def run():
    app = QtGui.QApplication(sys.argv)
    GUI = MainWindow()
    sys.exit(app.exec_())
run()

我想在按下按钮后显示名为loading.gif"的 gif.按下按钮后什么也没有出现,我不确定该怎么做才能正确显示 gif.gif 与我创建的屏幕大小相同 (240x320).

I would like to display the gif called "loading.gif" after the button is pressed. Nothing appears after pressing the button and I am unsure of what to do to get the gif to properly appear. The gif is the same size as the screen that I created (240x320).

推荐答案

问题是 QMovieLabel 是 gif_display 中的一个局部变量,所以在函数运行完毕后会被删除,所以解决的方法是避免删除有两个选项:使其成为类的属性或使其成为窗口的子项,我将展示第二种方法,因为我认为它是您想要的:

The problem is that QMovieLabel is a local variable within gif_display so it will be deleted when the function finishes running, so the solution is to avoid deleting it. There are 2 options: make it an attribute of the class or make it a child of the window , I will show the second method since I think it is the one you want:

import sys
from PyQt4 import QtCore, QtGui

class MainWindow (QtGui.QMainWindow):
    def __init__(self, parent=None):
        super(MainWindow,self).__init__(parent)
        self.setGeometry(50,50,240,320)
        self.home()

    def home(self):
        but = QtGui.QPushButton("Example", self) # Creates the brew coffee button
        but.clicked.connect(self.gif_display)
        but.resize(200,80)
        but.move(20,50)
        self.show()

    @QtCore.pyqtSlot()
    def gif_display(self):
        l = QMovieLabel('loading.gif', self)
        l.adjustSize()
        l.show()

class QMovieLabel(QtGui.QLabel):
    def __init__(self, fileName, parent=None):
        super(QMovieLabel, self).__init__(parent)
        m = QtGui.QMovie(fileName)
        self.setMovie(m)
        m.start()

    def setMovie(self, movie):
        super(QMovieLabel, self).setMovie(movie)
        s=movie.currentImage().size()
        self._movieWidth = s.width()
        self._movieHeight = s.height()

def run():
    app = QtGui.QApplication(sys.argv)
    GUI = MainWindow()
    sys.exit(app.exec_())

if __name__ == '__main__':
    run()

这篇关于使用 QLabel 在 PyQt GUI 中显示 gif的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆