我的要求是减小图像的大小并以方框(50 x 50)显示。如果图像的大小小于方框的大小,则应按原样显示图像。作为初步尝试,我尝试使用以下代码,旨在通过以下方式减小所有图像的大小:
picSize = QtCore.QSize(lbl.width() / 2 , lbl.height() / 2)
但即使使用了以下代码,下面的代码也没有缩小图像尺寸:
picSize = QtCore.QSize(lbl.width() / 4 , lbl.height() / 4)
请帮帮我。
import os
import sys
from PySide import QtGui, QtCore
class SecondExample(QtGui.QWidget):
def __init__(self):
super(SecondExample, self).__init__()
self.initUI()
def initUI(self):
self.imgFolder = os.getcwd()
self.widgetLayout = QtGui.QVBoxLayout(self)
self.scrollarea = QtGui.QScrollArea()
self.scrollarea.setWidgetResizable(True)
self.widgetLayout.addWidget(self.scrollarea)
self.widget = QtGui.QWidget()
self.layout = QtGui.QVBoxLayout(self.widget)
self.scrollarea.setWidget(self.widget)
self.layout.setAlignment(QtCore.Qt.AlignHCenter)
for img in os.listdir(self.imgFolder):
imgPath = os.path.join(self.imgFolder, img)
actualImage = QtGui.QImage(imgPath)
pixmap = QtGui.QPixmap(imgPath)
lbl = QtGui.QLabel(self)
lbl.setPixmap(pixmap)
lbl.setScaledContents(True)
picSize = QtCore.QSize(lbl.width() / 2 , lbl.height() / 2)
lbl.resize(picSize)
self.layout.addWidget(lbl)
self.setGeometry(100, 100, 900, 700)
self.setWindowTitle('Viewer')
self.show()
def main():
app = QtGui.QApplication(sys.argv)
ex = SecondExample()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
答案 0 :(得分:4)
以下代码将满足您的要求:
imgPath = os.path.join(self.imgFolder, img)
actualImage = QtGui.QImage(imgPath)
pixmap = QtGui.QPixmap(imgPath)
pixmap = pixmap.scaled(500, 500, QtCore.Qt.KeepAspectRatio)
lbl = QtGui.QLabel(self)
lbl.setPixmap(pixmap)
lbl.setScaledContents(True)
答案 1 :(得分:2)
您可以使用scaledToWidth
或scaledToHeight method on the
QImage`类。
img= QtGui.QImage(imgPath)
pixmap = QtGui.QPixmap(img.scaledToWidth(50))
lbl = QtGui.QLabel(self)
lbl.setPixmap(pixmap)
答案 2 :(得分:1)