Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将图标数据放入 Python 列表中。我怎样才能把这个图标数据放到 pixbuf 中?我在这个来源中找不到它。
这是我获取图标数据的代码:
from gi.repository import Gio apps = Gio.AppInfo.get_all() icon = apps[0].get_icon() print(icon)
Python 3、GTK3、操作系统:类 Debian Linux。
我找不到如何将Gio.AppInfo图标放入 pixbuf,但我以另一种方式解决了我的问题。
Gio.AppInfo
我在该/usr/share/applications/位置找到了桌面应用程序文件。我可以通过读取.desktop它的文件来获得特定的应用程序图标。new_from_file()最后,我可以通过使用命令将图标放入 pixbuf 。
/usr/share/applications/
.desktop
new_from_file()