码迷,mamicode.com
首页 > 其他好文 > 详细

QLabel显示图片,图片可以自适应label的大小

时间:2019-03-27 21:28:35      阅读:368      评论:0      收藏:0      [点我收藏+]

标签:window   sys   color   code   center   qwidget   pre   elf   else   

showpicture.py

from PyQt5.QtCore import *
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *


import sys

class MyWidget(QWidget):
    def __init__(self, parent = None):
        super().__init__(parent)
        self.setWindowTitle(self.tr(显示图片))
        self.resize(500,400)
        self.label = QLabel(self)
        self.label.setFrameShape(QFrame.Box)
        self.label.setAlignment(Qt.AlignCenter)
        img = QImage()
        if img.load(meixi.jpg):
            self.label.setGeometry(0,0,400,300)
            width = img.width()
            height = img.height()

            if width/400 >= height/300:
                ratio = width/400
            else:
                ratio = height/300
            new_width = width/ratio
            new_height = height/ratio
            new_img = img.scaled(new_width,new_height,Qt.KeepAspectRatio)
            print(new_img)
            self.label.setPixmap(QPixmap.fromImage(new_img))


if __name__ == __main__:
    app = QApplication(sys.argv)
    widget = MyWidget()
    widget.show()
    #print(widget.children())
    sys.exit(app.exec_())

 技术图片

QLabel显示图片,图片可以自适应label的大小

标签:window   sys   color   code   center   qwidget   pre   elf   else   

原文地址:https://www.cnblogs.com/ACPIE-liusiqi/p/10610274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!