pyqt5中用什么控件显示照片
时间: 2024-02-05 22:04:44 浏览: 75
图片显示控件
5星 · 资源好评率100%
您可以使用QLabel控件在PyQt5中显示照片。可以使用QPixmap类将照片加载到QLabel控件中,如下所示:
```python
from PyQt5.QtCore import Qt
from PyQt5.QtGui import QPixmap
from PyQt5.QtWidgets import QApplication, QLabel, QWidget
class Example(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
lbl = QLabel(self)
pixmap = QPixmap('image.jpg')
lbl.setPixmap(pixmap)
self.resize(pixmap.width(), pixmap.height())
self.setWindowTitle('Image')
self.show()
if __name__ == '__main__':
app = QApplication([])
ex = Example()
app.exec_()
```
请注意,此示例假定存在名为“image.jpg”的图像文件。
阅读全文