Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Tkinter Python 中创建根据框架调整大小的图像?我有一个带有图像的框架,我希望图像会在整个框架上拉伸,当框架改变大小时,图像会根据框架改变大小。
使用<Configure>事件绑定。当小部件调整大小时触发该<Configure>事件。例如:
<Configure>
root.bind('<Configure>', resizeImage)
要获取图像的当前容器大小,请使用
w, h = frame.winfo_width, frame.winfo_height
然后使用w和h来调整和更新您的图像。
w
h