PyQt5 - 如何在窗口中添加图像?
在本文中,我们将了解如何将图像添加到窗口。这样做的基本思想是首先使用 QPixmap 加载图像并将加载的图像添加到标签,然后根据图像的尺寸调整标签的大小,尽管调整大小部分是可选的。
为了使用 Qpixmap 和其他东西,我们必须导入以下库:
from PyQt5.QtWidgets import *
from PyQt5.QtGui import QPixmap
import sys
For loading image :
Syntax :
Argument : Image name if image is in same folder else file path.
For adding image to label :
Syntax :
label.setPixmap(pixmap)
Argument : It takes QPixmap object as argument.
代码 :
Python3
pixmap = QPixmap('image.png')
输出 :