热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

wxPython中的GDI画刷技术深入解析(第三部分)

在wxPython中,GDI画刷技术是实现图形区域填充的关键工具。本文深入探讨了画刷的多种属性,如颜色和样式,并详细介绍了如何通过`dc.SetBackground(brush)`方法设置控件的背景色,确保其与父窗口背景的一致性。此外,文章还扩展讨论了画刷在复杂图形绘制中的应用,提供了丰富的代码示例和实践技巧。

画笔是在区域中填充的绘图工具。它用于绘制矩形、 椭圆等。 它有一种颜色和样式属性。

一. dc.SetBackground(brush) 利用该方法,保持控件的背景色与父窗口被景色一致。

  具体使用方式:

  1. 首先获得被景色的画刷,brush = self.GetBackgroundBrush(dc)

def GetBackgroundBrush(self, dc):colBg = self.GetBackgroundColour()brush = wx.Brush(colBg, wx.SOLID) myAttr = self.GetDefaultAttributes()parAttr = self.GetParent().GetDefaultAttributes()myDef = colBg == myAttr.colBgparDef = self.GetParent().GetBackgroundColour() == parAttr.colBgif myDef and parDef:if wx.Platform == "__WXMAC__":brush.MacSetTheme(1) # 1 == kThemeBrushDialogBackgroundActiveelif wx.Platform == "__WXMSW__":if self.DoEraseBackground(dc):brush = Noneelif myDef and not parDef:colBg = self.GetParent().GetBackgroundColour()brush = wx.Brush(colBg, wx.SOLID) return brush

  2. 在OnPaint方法中,绘制一致的被景色。

if brush is not None:dc.SetBackground(brush)dc.Clear()

二.   利用wx.GCDC绘制半透明效果。普通的DC不带透明效果。

 

## #details# 绘制带透明背景的矩形区域def __DrawAlphaRectangle(self, dc):try:gcdc = wx.GCDC(dc)except:gcdc = dcalphaColor = wx.Color(0, 0, 0, 128)#半透明brush = wx.Brush(alphaColor)gcdc.SetBrush(brush)gcdc.DrawRectangle(40, 40, 40, 50)def __DrawSimpleRectangle(self, dc):alphaColor = wx.Color(0, 0, 0, 128)#半透明,但是在该dc下不会起效果brush = wx.Brush(alphaColor)dc.SetBrush(brush)dc.DrawRectangle(100, 100, 40, 50) 

运行效果:

三.   DrawBitmp在dc上画透明背景png图像及绘制disable样式的效果。

def __DrawPNG(self, dc):bmp = wx.Bitmap('earth.png') dc.DrawBitmap(bmp, 0, 0)image = wx.ImageFromBitmap(bmp)imageutils.grayOut(image)dc.DrawBitmap(wx.BitmapFromImage(image), 240, 0)

 

运行效果:

 

四. region区域绘图。

def __DrawInClippedRegion(self, dc):region = wx.RegionFromPoints(((20, 20),(40, 20), (40,0), (100, 200), (20,200)))dc.SetClippingRegionAsRegion(region)#在clipregion 里面作图像alphaColor = wx.Color(0, 0, 0, 128)#半透明,但是在该dc下不会起效果brush = wx.Brush(alphaColor)dc.SetBrush(brush)dc.DrawRectangle(0, 0, 500, 500)dc.DestroyClippingRegion()

 

运行效果:

 

 

 

转:https://www.cnblogs.com/ankier/archive/2013/01/19/2867289.html



推荐阅读
author-avatar
爱中华爱美丽
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有