原文地址:https://www.douyacun.com/article/2114b711521a0c8a935706d7a40e65c8
img = QImage("/Users/admin/Desktop/hello.png")
pimg = QPixmap.fromImage(image)
self.imgLabel.setPixmap(pimg)
img = QImage("/Users/admin/Desktop/hello.png")
pimg = QPixmap.fromImage(image)
self.imgLabel.setPixmap(pimg)
self.imgLabel.setScaledContents(True)
img = QImage("/Users/admin/Desktop/hello.png")
pimg = QPixmap.fromImage(image)
fw = self.imgLabel.width() / width
fh = self.imgLabel.height() / height
factor = min(fw, fh)
width = int(width * factor)
height = int(height * factor)
nimg = img.scaled(width, height, QtCore.Qt.KeepAspectRatio, QtCore.Qt.SmoothTransformation)
self.imgLabel.setPixmap(nimg)