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 开发自定义 GUI。我无法找到以下问题的答案:
我不知道如何在 python 中找到 、 或 文件的图标.elf并将.app图像.exe加载到 pygame 中。
.elf
.app
.exe
在您的桌面上获取可执行文件的 .ico 映像
右键单击图标并单击属性
然后点击“更改图标”
这将带您到图标 ico 图像文件所在的位置
然后去获取那个 .ico 文件并将它放在你的 pygame 文件的同一目录中
然后在你的 pygame 文件中使用这一行使其成为角落的图标:
pygame.display.set_icon(icon image)
祝你好运