调整pyqt4中qlabel的图像

时间:2015-06-22 08:40:16

标签: python python-2.7 pyqt pyqt4 qt-designer

我正在使用此功能打开图像(菜单按钮):

def open_file(self, currView):
    fileName = QtGui.QFileDialog.getOpenFileName(self, "Open File", QtCore.QDir.currentPath())
    if fileName:
        pixelMap = QtGui.QPixmap(fixPgmPixmap(fileName,tmpPngFilename))
        if pixelMap.isNull():
                QtGui.QMessageBox.information(self, "Image Viewer", "Cannot load %s." % fileName)
                return
        currView.setPixmap(pixelMap)
        currView.show()

currView是leftImage或RightImage - 它们都是QLabel。

加载图像后我想重新缩放它(放大\出)。

但是我在Qlabel本身上没有成功,我是否需要在像素图上做到这一点? (如果是,那怎么样?)

0 个答案:

没有答案