canvas教程

WinAPI: InvertRgn

字号+ 作者:H5之家 来源:H5之家 2016-08-31 17:00 我要评论( )

本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variant ...

您现在的位置:天新网 > 软件开发 > 开发语言 > Delphi开发 > Delphi技巧

WinAPI: InvertRgn - 区域颜色取反

2009年11月06日 博客园 万一

  本例效果图:

WinAPI: InvertRgn - 区域颜色取反

  代码文件:

unit Unit1; 
 
interface 
 
uses 
 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 
 Dialogs, StdCtrls, ExtCtrls; 
 
type 
 TForm1 = class(TForm) 
  CheckBox1: TCheckBox; 
  ColorListBox1: TColorListBox; 
  procedure FormPaint(Sender: TObject); 
  procedure ColorListBox1Click(Sender: TObject); 
  procedure CheckBox1Click(Sender: TObject); 
 end; 
 
var 
 Form1: TForm1; 
 
implementation 
 
{$R *.dfm} 
 
procedure TForm1.CheckBox1Click(Sender: TObject); 
begin 
 Repaint; 
end; 
 
procedure TForm1.ColorListBox1Click(Sender: TObject); 
begin 
 Self.Color := ColorListBox1.Selected; 
end; 
 
procedure TForm1.FormPaint(Sender: TObject); 
const 
 str = A; 
var 
 Rgn: HRGN; 
 x,y: Integer; 
begin 
 Canvas.Font.Size := 120; 
 Canvas.Font.Style := [fsBold]; 
 SetBkMode(Canvas.Handle, TRANSPARENT); 
 
 x := (ClientWidth - ColorListBox1.Width - Canvas.TextWidth(str)) div 2; 
 y := -20; 
 
 {建立路径} 
 BeginPath(Canvas.Handle); 
 Canvas.TextOut(x, y, str); 
 EndPath(Canvas.Handle); 
 
 {将路径转换为区域} 
 Rgn := PathToRegion(Canvas.Handle); 
 
 {区域颜色取反} 
 if CheckBox1.Checked then InvertRgn(Canvas.Handle, Rgn); 
 
 {绘制} 
 Canvas.Brush.Color := clSilver; 
 Canvas.Brush.Style := bsDiagCross; 
 FillRgn(Canvas.Handle, Rgn, Canvas.Brush.Handle); 
 Canvas.Brush.Color := clRed; 
 Canvas.Brush.Style := bsSolid; 
 FrameRgn(Canvas.Handle, Rgn, Canvas.Brush.Handle, 1, 1); 
 
 DeleteObject(Rgn); 
end; 
 
end. 

  窗体文件:

object Form1: TForm1 
 Left = 366 
 Top = 269 
 Caption = Form1 
 ClientHeight = 179 
 ClientWidth = 239 
 Color = clBtnFace 
 Font.Charset = DEFAULT_CHARSET 
 Font.Color = clWindowText 
 Font.Height = -11 
 Font.Name = Tahoma 
 Font.Style = [] 
 OldCreateOrder = False 
 Position = poDesigned 
 OnPaint = FormPaint 
 PixelsPerInch = 96 
 TextHeight = 13 
 object CheckBox1: TCheckBox 
  Left = 32 
  Top = 152 
  Width = 97 
  Height = 25 
  Caption = #21306#22495#39068#33394#21462#21453 
  TabOrder = 0 
  OnClick = CheckBox1Click 
 end 
 object ColorListBox1: TColorListBox 
  Left = 147 
  Top = 0 
  Width = 92 
  Height = 179 
  Align = alRight 
  ItemHeight = 16 
  TabOrder = 1 
  OnClick = ColorListBox1Click 
 end 
end 

上一篇: WinAPI: PathToRegion - 将路径转换为区域
下一篇: WinAPI: RectInRegion - 判断矩形是否位于区域中

相关内容

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • WinAPI: CreatePolyPolygonRgn

    WinAPI: CreatePolyPolygonRgn

    2016-08-31 15:01

  • Html5 Canvas笔记(1)-CanvasAppTemplate代码

    Html5 Canvas笔记(1)-CanvasAppTemplate代码

    2016-08-31 13:01

  • Android欢乐贪吃蛇游戏实战项目开发教程-05虚拟方向键(四)四个三角形按钮

    Android欢乐贪吃蛇游戏实战项目开发教程-05虚拟方向键(四)四个三角

    2016-08-29 18:04

  • JavaScript强化教程

    JavaScript强化教程

    2016-08-27 18:03

网友点评