Re-learning gdi+[65]: Path brushes (5)

Source: Internet
Author: User

This example effect chart:

Code files: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..2] of Tgpcolor = (aclred, Aclgreen, Aclblue);
Var
PTS:ARRAY[0..2] of Tgppoint;
G:tgpgraphics;
Path:tgpgraphicspath;
Pb:tgppathgradientbrush;
Num:integer;
Begin
Pts[0]: = Makepoint (80, 10);
PTS[1]: = Makepoint (10, 150);
PTS[2]: = Makepoint (150, 150);
G: = Tgpgraphics.create (Canvas.handle);
Path: = Tgpgraphicspath.create;
Path. Addpolygon (Pgppoint (@pts), Length (pts));
PB: = tgppathgradientbrush.create (path); {This establishes the center default white; Press the center default black}
PB: = Tgppathgradientbrush.create (Pgppoint (@pts), Length (pts)); {Create a path based on an array of points draw the brush}
Pb. Setcentercolor (Aclwhite);
Num: = Length (pts);
Pb. Setsurroundcolors (Pargb (@ColorArr), num);
G.fillpath (Pb, Path);
{Use grayscale correction mode for another place to draw again}
Pb. Setgammacorrection (True);
G.translatetransform (150, 0);
G.fillpath (Pb, Path);
Pb. Free;
Path. Free;
G.free;
End
End.

Form file:object Form1: TForm1
 Left = 0
 Top = 0
 Caption = 'Form1'
 ClientHeight = 163
 ClientWidth = 311
 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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.