是否可以将其转换为位图或图标? 我想避免将其保存在文件中,并使用wx.Bitmap读取它。例如。
答案 0 :(得分:0)
这似乎有效:
import wx
import gtk
pb = gtk.gdk.pixbuf_new_from_file("someFile.jpg")
img = wx.EmptyImage(pb.get_width(), pb.get_height())
img.SetData(pb.get_pixels())
## you can now convert the wx.Image to wx.Bitmap etc...