在Python 3.5 Tkinter中使用图像作为按钮

时间:2016-02-21 12:52:44

标签: python button tkinter python-3.5

使用tkinter,如何制作一个图片不是文字的按钮?

1 个答案:

答案 0 :(得分:3)

有些搜索显示Image on a button。它使用PhotoImage函数。解释其中包含的一些代码:

from Tkinter import *                         # Import tkinter
root=Tk()                                     # Create an instance using Tk()
b=Button(root,justify = LEFT)                 # Create a button
photo=PhotoImage(file="mine32.gif")           # Give photo an image
b.config(image=photo,width="10",height="10")  # Configure the earlier instance to use the photo
b.pack(side=LEFT)                             # Pack up the button
root.mainloop()                               # Create everything