如何使用pyqt在GUI的选项卡中添加公司的图像或徽标

问题描述 投票:0回答:1

enter image description here

我想要Logo位于logo.png的位置及其右侧GUI的选项卡上。我该怎么办。

python user-interface pyqt pyqt5 pyqt4
1个回答
0
投票

尝试根据您的程序修改此代码

    self.im = QPixmap("./image.jpg")
    self.label = QLabel()
    self.label.setPixmap(self.im)

    self.grid = QGridLayout()
    self.grid.addWidget(self.label,1,1)
    self.setLayout(self.grid)

    self.setGeometry(50,50,320,200)
    self.setWindowTitle("PyQT show image")
    self.show()

查看此网页了解更多信息

© www.soinside.com 2019 - 2024. All rights reserved.