python的pyqt的gui设计,一次性打开五张图片代码
时间: 2024-02-12 21:10:01 浏览: 56
python实现好看的GUI界面pyqt5
5星 · 资源好评率100%
好的,可以使用PyQt的QPixmap和QLabel来实现。以下是一个示例代码,可以一次性打开五张图片并在GUI界面上显示:
```python
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QLabel, QVBoxLayout
from PyQt5.QtGui import QPixmap
class ImageWidget(QWidget):
def __init__(self, image_path):
super().__init__()
self.label = QLabel(self)
pixmap = QPixmap(image_path)
self.label.setPixmap(pixmap)
layout = QVBoxLayout(self)
layout.addWidget(self.label)
if __name__ == '__main__':
app = QApplication(sys.argv)
widget = QWidget()
layout = QVBoxLayout(widget)
image_paths = ['image1.png', 'image2.png', 'image3.png', 'image4.png', 'image5.png']
for image_path in image_paths:
image_widget = ImageWidget(image_path)
layout.addWidget(image_widget)
widget.show()
sys.exit(app.exec_())
```
你可以将上面代码中的`image_paths`列表替换为你要显示的五张图片的路径列表。运行这个程序,就可以在一个窗口中同时显示五张图片了。
阅读全文