程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 再學GDI+[64]: 路徑畫刷(4) - 還是 SetCenterColor、SetSurround

再學GDI+[64]: 路徑畫刷(4) - 還是 SetCenterColor、SetSurround

編輯:Delphi

在本例中沒有指定 CenterColor, 將默認白色;

SurroundColors 原來是對應路徑中的點(但按下面的做法在橢圓裡不靈).

本例效果圖:

代碼文件:unit Unit1;
interface
uses
 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
 Dialogs;
type
 TForm1 = class(TForm)
  procedure FormPaint(Sender: TObject);
 end;
var
 Form1: TForm1;
implementation
{$R *.dfm}
uses GDIPOBJ, GDIPAPI;
procedure TForm1.FormPaint(Sender: TObject);
const
 ColorArr: array[0..3] of TGPColor = ($FFFF0000, $FF00FF00, $FF0000FF, $FFFFFF00);
var
 rt: TRect;
 pts: array of TGPPoint;
 g: TGPGraphics;
 path1, path2: TGPGraphicsPath;
 pb1,pb2: TGPPathGradientBrush;
 num: Integer;
begin
 rt := Bounds(10, 10, 150, 150);
 g := TGPGraphics.Create(Canvas.Handle);
 {矩形路徑}
 path1 := TGPGraphicsPath.Create;
 path1.AddRectangle(MakeRect(rt));
 pb1 := TGPPathGradientBrush.Create(path1);
 num := 4;
 pb1.SetSurroundColors(PARGB(@ColorArr), num);
 g.FillPath(pb1, path1);
 {三角形路徑}
 OffsetRect(rt, 160, 0);
 SetLength(pts, 3);
 pts[0] := MakePoint(rt.Left + (rt.Right-rt.Left) p 2, rt.Top);
 pts[1] := MakePoint(rt.Left, rt.Bottom);
 pts[2] := TGPPoint(rt.BottomRight);
 path2 := TGPGraphicsPath.Create;
 path2.AddPolygon(PGPPoint(pts), Length(pts));
 pb2 := TGPPathGradientBrush.Create(path2);
 num := 3;
 pb2.SetSurroundColors(PARGB(@ColorArr), num);
 g.FillPath(pb2, path2);
 pb1.Free;
 pb2.Free;
 path1.Free;
 path2.Free;
 g.Free;
end;
end.

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved