再学 GDI+[77]: 区域(6) - GetRegionScans - 获取区域中的所有矩形

本文介绍了一个使用Delphi编写的绘图应用实例。该程序通过创建圆形路径并填充随机颜色来生成独特的视觉效果。文章提供了完整的源代码,包括单元定义、接口、类型声明、过程实现等。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

本例效果图:

26153638_LFLC.gif

代码文件:
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    procedure FormPaint(Sender: TObject);
    procedure FormClick(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

uses GDIPOBJ, GDIPAPI;

procedure TForm1.FormPaint(Sender: TObject);
var
  g: TGPGraphics;
  b: TGPSolidBrush;
  path: TGPGraphicsPath;
  rgn: TGPRegion;
  Matrix: TGPMatrix;
  RectCount: Integer;
  rts: array of TGPRect;
  i: Integer;
begin
  g := TGPGraphics.Create(Canvas.Handle);
  b := TGPSolidBrush.Create(MakeColor(50, 0, 0, 255));

  path := TGPGraphicsPath.Create;
  path.AddEllipse(MakeRect(20, 10, ClientWidth-40, ClientHeight-20));
  rgn := TGPRegion.Create(path);

  Matrix := TGPMatrix.Create; {它在本例中只是个摆设, 因为参选需要}

  RectCount := rgn.GetRegionScansCount(Matrix);
  SetLength(rts, RectCount);
  rgn.GetRegionScans(Matrix, PGPRect(rts), RectCount);

  Randomize;
  for i := 0 to RectCount - 1 do
  begin
    b.SetColor(ColorRefToARGB(Random($FFFFFF)));
    g.FillRectangle(b, rts[i]);
  end;

  Matrix.Free;
  rgn.Free;
  path.Free;
  b.Free;
  g.Free;
end;

procedure TForm1.FormClick(Sender: TObject);
begin
  Repaint;
end;

end.

 
 
 
 
 

 

 

  
窗体文件:
object Form1: TForm1
  Left = 0
  Top = 0
  Caption = 'Form1'
  ClientHeight = 217
  ClientWidth = 219
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  Position = poDesktopCenter
  OnClick = FormClick
  OnPaint = FormPaint
  PixelsPerInch = 96
  TextHeight = 13
end

 
 
 
 
 

 

 

  

转载于:https://my.oschina.net/hermer/blog/320324

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值