GTK - Python 来自列表的 Pixbuf
GTK - Python Pixbuf From List
我将图标数据放入 Python 列表中。我怎么能把这个图标数据放到pixbuf中呢?我无法在 this 来源中找到它。
这是我获取图标数据的代码:
from gi.repository import Gio
apps = Gio.AppInfo.get_all()
icon = apps[0].get_icon()
print(icon)
Python 3, GTK3, OS: Debian-like Linux.
我找不到如何将 Gio.AppInfo
图标放入 pixbuf,但我用另一种方式解决了我的问题。
我在 /usr/share/applications/
位置找到了桌面应用程序文件。我可以通过阅读它的 .desktop
文件来获得特定的应用程序图标。最后,我可以使用 new_from_file()
命令将图标放入 pixbuf。
我将图标数据放入 Python 列表中。我怎么能把这个图标数据放到pixbuf中呢?我无法在 this 来源中找到它。
这是我获取图标数据的代码:
from gi.repository import Gio
apps = Gio.AppInfo.get_all()
icon = apps[0].get_icon()
print(icon)
Python 3, GTK3, OS: Debian-like Linux.
我找不到如何将 Gio.AppInfo
图标放入 pixbuf,但我用另一种方式解决了我的问题。
我在 /usr/share/applications/
位置找到了桌面应用程序文件。我可以通过阅读它的 .desktop
文件来获得特定的应用程序图标。最后,我可以使用 new_from_file()
命令将图标放入 pixbuf。