gpt4 book ai didi

python - 我怎样才能让 QLabel 的大小与它显示的 QPixmap 的大小完全一样?

转载 作者:太空宇宙 更新时间:2023-11-03 15:34:58 25 4
gpt4 key购买 nike

我需要一些关于 QT/PyQt 布局的建议。

我想要实现的是让图像显示、居中、正确缩放,在保持纵横比的同时占用尽可能多的空间。这可以很容易地使用这个来完成:

class Demo(QWidget):
def __init__(self) -> None:
super().__init__()
self.setWindowState(Qt.WindowMaximized)
self.layout = QVBoxLayout()
self.setLayout(self.layout)

self.button = QPushButton("Next image")
self.label = QLabel()
self.label.setStyleSheet("QLabel { background-color : red; }")
self.label.setAlignment(Qt.AlignCenter)

self.layout.addWidget(self.label)
self.layout.addWidget(self.button)

self.button.clicked.connect(self.showImage)
self.show()


def showImage(self):
self.pixmap = QPixmap("image.jpg")
scaled = self.pixmap.scaled(self.label.size(), Qt.KeepAspectRatio)
self.label.setPixmap(scaled)

if __name__ == '__main__':
app = QApplication(sys.argv)
ex = Demo()
sys.exit(app.exec_())

问题是,图像将以标签为中心显示,周围有很多“多余的标签”,请看截图,红色的东西

enter image description here

但我需要标签正好图像的大小。我想在图像上做一些橡皮筋以选择它们的一部分(选择框以供稍后在 retinanet 训练中使用)并计算我需要 mapToGlobal 和 mapFromGlobal 的框的正确大小。我不能从 Pixmap 本身执行此操作(因为它不是小部件),当我从 Label 执行此操作时,我得到错误的值,因为它比实际图像大。

现在,我可以将 GridLayout 或 HBoxLayout 与 SpacerItems 一起使用。问题在于它的逻辑。 Label 的大小(和 SpacerItems 在 UI 加载时确定。当我稍后动态添加图像时,它会缩放到 Label 的大小,即使它可以更大,只要 SpacerItems 会“让路”做标签。结果是,我没有在左右“太多标签”,而是在顶部和底部有“太多标签”。我希望你明白我的意思。

我目前做的是:

  1. 根据屏幕分辨率调整窗口大小
  2. 添加(缩放的)图像
  3. 调整大小 (0,0)

然后应用程序会调整大小,以便 Labe 正好是图像的大小(我想要的),但这是一种邪恶的、骇人听闻的、闪烁的、疯狂的方式;-)

编辑:非常感谢您的回答,@eyllanesc :-)我试过了,它做了我想要的第一张照片。我忘了说的是,当第一个图像正确地“橡皮筋”时,单击“下一步”按钮后,会显示另一个图像。如果此图像小于实际标签(或横向而不是纵向),则标签会缩小。你看,在一些具有不同分辨率和方向的图像之后,Label 不断缩小和缩小......

https://pastebin.com/ZMMw20Z7

https://giphy.com/gifs/xlou5RpQoX805fUymR

最佳答案

一个可能的解决方案是将大小的水平策略更改为 QSizePolicy::Maximum 并将小部件居中放置在布局中:

from PyQt5 import QtCore, QtGui, QtWidgets

class Demo(QtWidgets.QWidget):
def __init__(self) -> None:
super().__init__()
self.setWindowState(QtCore.Qt.WindowMaximized)
layout = QtWidgets.QVBoxLayout(self)
self.button = QtWidgets.QPushButton("Next image")
self.label = QtWidgets.QLabel()
self.label.setStyleSheet("QLabel { background-color : red; }")
layout.addWidget(self.label)
layout.addWidget(self.button)
self.button.clicked.connect(self.showImage)
self.show()

def showImage(self):
self.pixmap = QtGui.QPixmap("image.jpg")
scaled = self.pixmap.scaled(self.label.size(), QtCore.Qt.KeepAspectRatio)
self.label.setPixmap(scaled)
sp = self.label.sizePolicy()
sp.setHorizontalPolicy(QtWidgets.QSizePolicy.Maximum)
self.label.setSizePolicy(sp)
self.layout().setAlignment(self.label, QtCore.Qt.AlignCenter)

if __name__ == '__main__':
import sys
app = QtWidgets.QApplication(sys.argv)
ex = Demo()
sys.exit(app.exec_())

enter image description here

更新:

以前的解决方案的问题是以前的 QLabel 的大小被用作建立新大小的引用,而不是它应该基于它可能拥有的最大大小,为此我实现了一个自定义类跟踪最大尺寸:

from PyQt5 import QtCore, QtGui, QtWidgets
from itertools import cycle
from glob import glob

class Label(QtWidgets.QLabel):
def resizeEvent(self, event):
if not hasattr(self, 'maximum_size'):
self.maximum_size = self.size()
else:
self.maximum_size = QtCore.QSize(
max(self.maximum_size.width(), self.width()),
max(self.maximum_size.height(), self.height()),
)
super(Label, self).resizeEvent(event)

def setPixmap(self, pixmap):
scaled = pixmap.scaled(self.maximum_size, QtCore.Qt.KeepAspectRatio)
super(Label, self).setPixmap(scaled)

class Demo(QtWidgets.QWidget):
def __init__(self) -> None:
super().__init__()
self.setWindowState(QtCore.Qt.WindowMaximized)
layout = QtWidgets.QVBoxLayout(self)
self.button = QtWidgets.QPushButton("Next image")
self.label = Label()
self.label.setStyleSheet("QLabel { background-color : red; }")
layout.addWidget(self.label)
layout.addWidget(self.button)
self.button.clicked.connect(self.showImage)
self.show()
self.images = cycle(glob("images/*"))

def showImage(self):
try:
filename = next(self.images)
self.label.setPixmap(QtGui.QPixmap(filename))
sp = self.label.sizePolicy()
sp.setHorizontalPolicy(QtWidgets.QSizePolicy.Maximum)
self.label.setSizePolicy(sp)
self.layout().setAlignment(self.label, QtCore.Qt.AlignCenter)
except StopIteration:
pass

if __name__ == '__main__':
import sys
app = QtWidgets.QApplication(sys.argv)
ex = Demo()
sys.exit(app.exec_())

关于python - 我怎样才能让 QLabel 的大小与它显示的 QPixmap 的大小完全一样?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55404911/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com