gpt4 book ai didi

python-3.x - tkinter Tcl错误: error reading bitmap file

转载 作者:行者123 更新时间:2023-12-03 06:46:07 24 4
gpt4 key购买 nike

我正在尝试设置一个应用程序图标(python3/tkinter),如下所示:

Interface()
root.title("Quicklist Editor")
root.iconbitmap('@/home/jacob/.icons/qle_icon.ico')
root.resizable(0, 0)
root.mainloop()

无论我做什么,我都会收到一条错误消息(空闲),内容如下:

return self.tk.call('wm', 'iconbitmap', self._w, bitmap)
_tkinter.TclError: error reading bitmap file "/home/jacob/.icons/qle_icon.ico"

我做错了什么?

最佳答案

问题不是代码,而是图标。我尝试使用 Gimp(某些 KDE 图标编辑器)之外的另一个程序创建一个 xbm,虽然它看起来丑陋得可怕,但它确实显示了一个图标。我想我必须找到一个为我的 Python 程序提供“可理解”图标的创建者。

<小时/>

编辑

iconbitmap方法原来只是黑白的,所以根本没用。

经过长时间的搜索,我找到了为 Python 3(在 Linux 上)设置应用程序图标颜色的解决方案。我找到了here :

root = Tk()
img = PhotoImage(file='your-icon')
root.tk.call('wm', 'iconphoto', root._w, img)

关于python-3.x - tkinter Tcl错误: error reading bitmap file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11176638/

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