在tkinter中上传图标时遇到问题

时间:2020-06-24 10:36:16

标签: python tkinter

我试图上传一个图标,发现它需要.ico文件,所以我再次对其进行了转换,但是没有上传。


root = Tk()
root.title("Tic tac toe Game")

# Inserting icon to my tic tac toe game

root.iconbitmap('img.ico')

root.mainloop()

请帮助我解决这个问题。

这是错误

Traceback (most recent call last):
    in wm_iconbitmap
    return self.tk.call('wm', 'iconbitmap', self._w, bitmap)
_tkinter.TclError: bitmap "img.ico" not defined

1 个答案:

答案 0 :(得分:1)

图标文件不一定是必需的,如果您想要一种奢侈的话,可以使用除ico之外的其他方式使用

from tkinter import PhotoImage
image = PhotoImage(file="favicon-32x32.png")
root.iconphoto(False, image)