5

我已经制作了一个我用 Python 制作的游戏的 .exe 文件,但我不确定如何让那个 exe 文件有一个图标,因为它看起来枯燥乏味。我想以某种方式使图标成为小行星的图片,比方说,因为我制作了游戏小行星。我使用 cx_freeze 来编译它。

4

2 回答 2

4

将其添加到文件中的选项中setup.py

setup(
    ...
    options={
        "build_exe": {
            "icon": "path/to/icon.ico"
        }
    }
)
于 2013-09-28T23:13:03.030 回答
0

这更容易理解!

import cx_Freeze
import sys
base = None

if sys.platform == 'win32':
   base = "Win32GUI"

executables = [cx_Freeze.Executable("example.pyw", base=base)]

cx_Freeze.setup(
name = "SeaofBTC-Client",
options = {"build_exe": {"packages":["tkinter",],"icon":"example.ico"}},
version = "0.01",
description = "Sea of BTC trading application",
executables = executables
)
于 2018-10-01T17:49:13.283 回答