显示具有固定宽高比的图像的可调整大小的 PyQt 小部件
Resizable PyQt widget displaying an image with fixed aspect ratio
在小部件中显示QImage 是一个常见问题。虽然这可以使用 QLabel.setPixmap
来完成,但生成的 QLabel 将具有等于像素图大小的固定大小。可以使用 setScaledContents
使 QLabel 缩放像素图并允许调整大小。但是,这将忽略图像的纵横比并缩放像素图以填充整个标签。
Whosebug 上的其他几个问题要求解决该问题,给出的典型解决方案是根据小部件的大小使用 QPixmap.scaled()
重新缩放像素图:
- QPixmap maintain aspect ratio python
- How do I make an image resize to scale in Qt?
- Qt: resizing a QLabel, containing a QPixmap, while keeping it's aspect ratio
是否有其他更 "native" 的方法来实现此目的?
以下基于 QLabel 的小部件将保留分配给它的像素图的纵横比。它使用 heighForWidth
方法 return 给定宽度的小部件的首选高度。这样,小部件在调整大小时自然地尊重像素图的纵横比并相应地缩放它。在 PyQt5 中测试。
class ImageWidget(QLabel):
def __init__(self, parent=None):
super().__init__(parent)
self.setScaledContents(True)
def hasHeightForWidth(self):
return self.pixmap() is not None
def heightForWidth(self, w):
if self.pixmap():
return int(w * (self.pixmap().height() / self.pixmap().width()))
在小部件中显示QImage 是一个常见问题。虽然这可以使用 QLabel.setPixmap
来完成,但生成的 QLabel 将具有等于像素图大小的固定大小。可以使用 setScaledContents
使 QLabel 缩放像素图并允许调整大小。但是,这将忽略图像的纵横比并缩放像素图以填充整个标签。
Whosebug 上的其他几个问题要求解决该问题,给出的典型解决方案是根据小部件的大小使用 QPixmap.scaled()
重新缩放像素图:
- QPixmap maintain aspect ratio python
- How do I make an image resize to scale in Qt?
- Qt: resizing a QLabel, containing a QPixmap, while keeping it's aspect ratio
是否有其他更 "native" 的方法来实现此目的?
以下基于 QLabel 的小部件将保留分配给它的像素图的纵横比。它使用 heighForWidth
方法 return 给定宽度的小部件的首选高度。这样,小部件在调整大小时自然地尊重像素图的纵横比并相应地缩放它。在 PyQt5 中测试。
class ImageWidget(QLabel):
def __init__(self, parent=None):
super().__init__(parent)
self.setScaledContents(True)
def hasHeightForWidth(self):
return self.pixmap() is not None
def heightForWidth(self, w):
if self.pixmap():
return int(w * (self.pixmap().height() / self.pixmap().width()))