简要地刷一张照片

时间:2012-09-11 17:31:45

标签: python pyqt

我正在尝试修改使用pyQt编写的程序(具体来说,Anki)。我希望程序能够快速闪存一张图片(存储为我硬盘上的文件),然后继续正常运行。

此代码将插入程序中的任意位置。 这是对现有程序的临时单用户补丁 - 它不需要快速或优雅或易于维护。

我的问题是我对pyQt知之甚少。我是否需要定义一个全新的“窗口”,或者我可以运行某种带有图像的“通知”功能吗?

1 个答案:

答案 0 :(得分:5)

QSplashScreen对此非常有用。它主要用于在程序加载时显示某些图像/文本,但您的情况也看起来很理想。您可以通过单击将其关闭,或者您可以将计时器设置为在一段时间后自动关闭它。

这是一个带有一个按钮的对话框的简单示例。按下时,它将显示图像并在2秒后关闭:

import sys
from PyQt4 import QtGui, QtCore

class Dialog(QtGui.QDialog):
    def __init__(self, parent=None):
        super(Dialog, self).__init__(parent)

        layout = QtGui.QVBoxLayout()
        self.setLayout(layout)

        self.b1 = QtGui.QPushButton('flash splash')
        self.b1.clicked.connect(self.flashSplash)

        layout.addWidget(self.b1)

    def flashSplash(self):
        # Be sure to keep a reference to the SplashScreen
        # otherwise it'll be garbage collected
        # That's why there is 'self.' in front of the name
        self.splash = QtGui.QSplashScreen(QtGui.QPixmap('/path/to/image.jpg'))

        # SplashScreen will be in the center of the screen by default.
        # You can move it to a certain place if you want.
        # self.splash.move(10,10)

        self.splash.show()

        # Close the SplashScreen after 2 secs (2000 ms)
        QtCore.QTimer.singleShot(2000, self.splash.close)

if __name__ == '__main__':
    app = QtGui.QApplication(sys.argv)

    main = Dialog()
    main.show()

    sys.exit(app.exec_())