看來,wxPython缺少「一些」示例。如何在Windows上使用wxPython加載BMP文件?
我有下面這段代碼不工作在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.
我嘗試添加第二但似乎它並沒有改變一件事。
奇怪的是,WX文檔說BMP處理程序總是可用的。我想你可以在mspaint中加載'sample.bmp'沒有問題? –
是的,它加載在Paint中,我也打開並使用Pain-t保存圖像,即使現在有不同的大小,它不會加載。 – sorin