大家好,所以我有一个问题,不太确定如何解决。我有一些根据查询生成的位图,这里的问题是,一旦查询变得更大一点,我的应用程序就会使用Windows允许的所有10,000个GDI对象,然后崩溃。我对GDI资源不太熟悉,但是也许有一种方法可以解决此问题。以下是失败的代码段
传奇文件
def _init_ui(self):
"""Initialize UI components."""
# Add layout management
self.hbox = wx.BoxSizer(wx.HORIZONTAL)
self.fgs = wx.FlexGridSizer(rows=self.n_items, cols=2, vgap=0, hgap=0)
# Create items to add
for _i, (key, value) in enumerate(zip(self.labels, self.colors)):
self.label = wx.StaticText(self,
label=str(key),
style=wx.ALIGN_LEFT,
)
self.colorbox = csel.ColourSelect(self,
_i,
"",
tuple(value),
style=wx.NO_BORDER,
size=(20, 20 ))
self.Bind(csel.EVT_COLOURSELECT, self.on_color_pick, id=_i)
self.fgs.Add(self.label, flag=wx.ALIGN_CENTER_VERTICAL)
self.fgs.Add(self.colorbox)
# Add our items to the layout manager and set the sizer.
self.hbox.Add(self.fgs)
self.SetSizer(self.hbox)
,它在行大小为(20,20)时失败 这个文件然后叫我 colourselect文件
def __init__(self, parent, id=wx.ID_ANY, label="", colour=wx.BLACK,
pos=wx.DefaultPosition, size=wx.DefaultSize,
callback=None, style=0):
size = wx.Size(*size)
if label:
mdc = wx.MemoryDC(wx.Bitmap(1,1))
w, h = mdc.GetTextExtent(label)
w += 8
h += 8
else:
w, h = 22, 22
size.width = size.width if size.width != -1 else w
size.height = size.height if size.height != -1 else h
super(ColourSelect, self).__init__(parent, id, wx.Bitmap(w,h,32),
pos=pos, size=size, style=style,
name='ColourSelect')
if type(colour) == type( () ):
colour = wx.Colour(*colour)
self.colour = colour
self.SetLabel(label)
self.callback = callback
bmp = self.MakeBitmap()
self.SetBitmap(bmp)
self.customColours = None
parent.Bind(wx.EVT_BUTTON, self.OnClick, self)
此操作在呼叫 self.SetBipMap(bmp)
时失败在同一文件中调用此小功能
def SetBitmap(self, bmp):
"""
Sets the bitmap representation of the current selected colour to the button.
:param wx.Bitmap `bmp`: the new bitmap.
"""
self.SetBitmapLabel(bmp)
self.Refresh()
最后是追溯到我名为 buttons
的文件中的最后一个函数def SetBitmapLabel(self, bitmap, createOthers=True):
self.bmpLabel = bitmap
if bitmap is not None and createOthers:
image = bitmap.ConvertToImage()
imageutils.grayOut(image)
self.SetBitmapDisabled(wx.Bitmap(image))
并且失败发生在** image = bitmap.ConvertToImage() ** 如果有人可以提出任何建议来优化我的程序,我将非常感激。许多代码是从其他导入的库中获取的,因此我对部分代码并不十分熟悉。希望有人有主意