似乎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.
我试图添加第二行,但似乎它没有改变一件事。
答案 0 :(得分:2)
您可能需要先创建wx.App
。
import wx
app = wx.App(False)
print wx.Image("wallpaper.bmp")