0

是否可以将其转换为位图或图标?例如,我想避免将其保存在文件中并使用 wx.Bitmap 读取它。

4

1 回答 1

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...
于 2011-05-29T15:50:14.310 回答