gpt4 book ai didi

image - 在按钮上调整图像

转载 作者:行者123 更新时间:2023-12-01 13:29:06 25 4
gpt4 key购买 nike

如何将图像调整为 Tkinter 中的按钮?

其实我有这个:

originalImg = Image.open(currentphotofolderPath + file)
img = ImageTk.PhotoImage(originalImg)
Button(photoFrame, image = img, borderwidth=0, height = 200, width = 200)

图像没有调整到 200x200 的按钮的问题

我不想用 PhotoImage.resize() 调整图像大小

最佳答案

zoom() 函数应该可以解决您的问题:

Return a new PhotoImage with the same image as this widget but zoom it with X and Y.



在实例化 Button() 之前添加下面的代码行小部件应该有帮助:
originalImg = Image.open(currentphotofolderPath + file)
originalImg.zoom(200, 200)
img = ImageTk.PhotoImage(originalImg)
Button(photoFrame, image=img, borderwidth=0, height=200, width=200)

关于image - 在按钮上调整图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46884211/

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