这篇文章主要介绍了PyQt5如何使用像素图控件QPixmap,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
QPixmap 像素图控件是用来处理图像的控件之一。它用于将优化后的图像显示在屏幕上。在我们的代码示例中,我们将使用QPixmap 控件在程序窗口上显示图像。
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QHBoxLayout, QLabel
from PyQt5.QtGui import QPixmap
class Example(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
hbox = QHBoxLayout(self)
pixmap = QPixmap('F:\Python\PyQt5\Widgets\images\liutao.png')
lb1 = QLabel(self)
lb1.setPixmap(pixmap)
hbox.addWidget(lb1)
self.setLayout(hbox)
self.move(300, 300)
self.setWindowTitle('像素图控件')
self.show()
def showDate(self, date):
self.lb1.setText(date.toString())
if __name__ == '__main__':
app = QApplication(sys.argv)
ex = Example()
sys.exit(app.exec_())
在我们的例子中,我们将图像显示在该程序的窗口上。
pixmap = QPixmap('F:\Python\PyQt5\Widgets\images\liutao.png')
我们创建的QPixmap 对象需要一个文件作为参数。
lb1 = QLabel(self)
lb1.setPixmap(pixmap)
我们把QPixmap 对象映射到的QLabel 控件。
程序执行后
感谢你能够认真阅读完这篇文章,希望小编分享的“PyQt5如何使用像素图控件QPixmap”这篇文章对大家有帮助,同时也希望大家多多支持天达云,关注天达云行业资讯频道,更多相关知识等着你来学习!