wx.Image

wx.Image是一个顶层类(详细文档

 

wx.Image用来创建一个与平台无关的图像,或者加载图像

它与wx.Bitmap协同使用,既兼顾了兼容性,又兼顾了效率

 

构造方法

wx.Image有多个重载的__init__()

常用的__init(self,parent,type)

Clear(self, value = 0)  初始化图像数据值

ClearAlpha(self)    删除Alpha通道

ConvertToBitmap(self, depth=-1)    转化数据为位图

Copy(self)    复制

Paste(self,image,x,y)  赋值image到self的(x,y)位置

Create(self, width, height)    #创建一个新的图像

Destroy(self)    #删除image对象

Rescale(self,w,h)    #缩放self到w,h

Resize(self,size,pos)  #裁剪

 

属性

Height  GetHeight(self)

Width   GetWidth(self)

 

posted @ 2019-09-10 18:11  jawide  阅读(1022)  评论(0编辑  收藏  举报