2

我想创建一个.exe文件。我将 Python 2.7.3 与 wxPython 一起用于 GUI。我已经安装py2exe了 Python 2.7 并尝试按照http://www.py2exe.org/index.cgi/Tutorial.exe上的教程创建一个文件

当我尝试运行我创建的.exe文件时,出现以下错误:

File "wx\_gdi.pyc",line823, in BitmapFromImage wx._core.PyAssertionError: 
C++ assertion "image.OK()" failed at ..\..\src\msw\bitmap.cpp(802) in 
wxBitmap::CreateFromImage(): invalid image

所以我查看了我的代码,以下行导致了问题:

self.bmpSun = wx.StaticBitmap(self, wx.ID_ANY, wx.BitmapFromImage(wx.Image('images/sun.gif', wx.BITMAP_TYPE_ANY)), pos = (0,0))

当我浏览到源文件夹并main.py自己运行文件时,我的应用程序运行良好。到目前为止,我还没有在网上找到任何帮助。任何人都可以解决这个问题/建议可靠的替代方案py2exe吗?谢谢你。

4

1 回答 1

2

出错的行是在Images文件夹中查找图像。这是相对于.exepy2exe. 因此,您需要确保该文件夹存在于相对于 exe 的正确位置,并且其中填充了您要使用的图像。你可以通过两种方式做到这一点。要么将文件夹复制到 exe 将驻留的位置,要么data_files在生成.exe. 这是我的一个设置脚本的相关部分,稍后显示data_files元组列表和data_files关键字 arg 的使用:

data_files = [('Images', glob('Images/*.*')),
                            ]

includes = ['win32com.decimal_23', 'datetime']

excludes = ['_gtkagg', '_tkagg', 'bsddb', 'curses',  'pywin.debugger',
            'pywin.debugger.dbgcon', 'pywin.dialogs', 'tcl',
            'Tkconstants', 'Tkinter', 'unittest']
packages = []

dll_excludes = ['libgdk-win32-2.0-0.dll', 'libgobject-2.0-0.dll', 'tcl84.dll',
                'tk84.dll','MSVCP90.dll']

setup(
    data_files = data_files,
    options = {"py2exe": {"compressed": 2,
                          "optimize": 2,
                          "includes": includes,
                          "excludes": excludes,
                          "packages": packages,
                          "dll_excludes": dll_excludes,
                          "bundle_files": 1,
                          "dist_dir": "dist",
                          "xref": False,
                          "skip_archive": False,
                          "ascii": False,
                          "custom_boot_script": '',
                         }
              },
    zipfile = None,
    windows = [filename]
    )
于 2012-10-10T22:26:19.663 回答