gpt4 book ai didi

python - 如何增加 QListWidget 中缩略图的大小

转载 作者:行者123 更新时间:2023-12-01 04:46:04 24 4
gpt4 key购买 nike

问题 => 我想创建一个 QlistWidgetItem 对象,其中包含图像列表及其缩略图,其尺寸比我当前的尺寸相对较大(有点像“中等图标”)或 Windows 资源管理器中的“大图标”选项)

到目前为止的进展 => 我已经设法找到如何创建列表,但除了图标之外的所有内容都太小了。

我尝试过的 => 我尝试更改列表项的字体大小,假设 cld 也会使字体按比例变大。没用。我还尝试根据另一位在线博主的说法使用(PIL 的图像)设置缩略图的大小,但效果不佳。

代码片段 => #从PIL导入图像和ImageQt,还导入QtGui和QtCore

    testimages = glob.glob(dirname +  "/*.jpg")
# Create a list item for each image file,
# setting the text and icon appropriately
for image in testimages:
picture = Image.open(image)
picture.thumbnail((128,128), Image.ANTIALIAS)
icon = QIcon(QPixmap.fromImage(ImageQt.ImageQt(picture)))
item = QListWidgetItem(image, self)
item.setIcon(icon)
fonter = QFont("Times New Roman")
fonter.setPointSize(14)
item.setFont(fonter)

希望大家能帮帮我。 :)

最佳答案

使用setIconSize定义您想要的尺寸在您的 QListWidget 上。

关于python - 如何增加 QListWidget 中缩略图的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29393806/

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