gpt4 book ai didi

python - 在按钮中创建图像

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

如何在按钮中创建图像。我不想让文字说“画”,而是让它成为画笔的图片。

代码:

self.draw_button = Button(self.root, text='Draw', command=self.use_draw) 
self.draw_button.grid(row=0, column=2)

最佳答案

使用 tkinter 的 PhotoImage 创建图像,然后将其设置在 Button 中。

from tkinter import *

root = Tk()

img = PhotoImage(file='paint_brush.png')

draw_button = Button(root, image=img)
draw_button.grid(row=0, column=0)

root.mainloop()

关于python - 在按钮中创建图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55114421/

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