如何在Windows上使用wxPython加载BMP文件?

时间:2011-11-10 17:14:04

标签: windows wxpython

似乎wxPython缺少“一些”例子。

我有以下代码在Windows上不起作用:

import wx
wx.InitAllImageHandlers() # calling it doesn't make any difference 
print wx.Image("sample.bmp") # also tried with type=wx.BITMAP_TYPE_ANY

返回的值为None,我还会看到警告:Warning: No handler found for image type.

我试图添加第二行,但似乎它没有改变一件事。

1 个答案:

答案 0 :(得分:2)

您可能需要先创建wx.App

import wx

app = wx.App(False)
print wx.Image("wallpaper.bmp")