tubocurarine的ChinaUnix博客
tubocurarine
全部博文(21)
2011年(1)
2010年(2)
2009年(18)
Arvin123
bbq0927
zpf0518
wuyu1998
janyou
db_sin
xuxuwang
qifeng71
smartzhx
分类: Python/Ruby
2009-10-13 13:34:54
from wxPython.wx import * def _setupContext( memory, font=None, color=None ): if font: memory.SetFont( font ) else: memory.SetFont( wxNullFont ) if color: memory.SetTextForeground( color ) def write( text, bitmap, pos=(0,0), font=None, color=None): """Simple write into a bitmap doesn't do any checking.""" memory = wx.MemoryDC( ) _setupContext( memory, font, color ) memory.SelectObject( bitmap ) try: memory.DrawText( text, pos[0],pos[1],) finally: memory.SelectObject( wxNullBitmap) return bitmap PS: Resize bitmap: start_image.Rescale(width, heght) bitmap=wx.BitmapFromImage(self.start_image)
上一篇:Ext3升级到Ext4 无损升级
下一篇:●如何“编译”Python程序(转载)
登录 注册