procedure CANVAS_DEGRADE_SHAPE(NaCanvas: TCanvas; InsideRect: TRect;
OuterRect: TRect; InsideColor:Tcolor; OuterColor:Tcolor;
Forma: TShapeType; X3, Y3: Integer);
//
procedure CANVAS_DEGRADE_SHAPE(NaCanvas: TCanvas; InsideRect: TRect;
OuterRect: TRect; InsideColor:Tcolor; OuterColor:Tcolor;
Forma: TShapeType; X3, Y3: Integer);
procedure DesenharForma(_Rect: TRect);
begin
Case Forma Of
stCircle, stEllipse: NaCanvas.Ellipse(_Rect);
stRectangle, stSquare: NaCanvas.Rectangle(_Rect);
stRoundRect, stRoundSquare: NaCanvas.RoundRect(_Rect.Left, _Rect.Top, _Rect.Right, _Rect.Bottom, X3, Y3);
End;
end;
var
i: Integer;
aRect: TRect;
Arr_StartRGB : Array[0..2] of Byte;
Arr_DifRGB : Array[0..2] of integer;
Arr_CurRGB : Array[0..2] of Byte;
begin
Arr_StartRGB[0] := GetRValue( ColorToRGB( InsideColor ) );
Arr_StartRGB[1] := GetGValue( ColorToRGB( InsideColor ) );
Arr_StartRGB[2] := GetBValue( ColorToRGB( InsideColor ) );
Arr_DifRGB[0] := GetRValue( ColorToRGB( OuterColor )) - Arr_StartRGB[0] ;
Arr_DifRGB[1] := GetgValue( ColorToRGB( OuterColor )) - Arr_StartRGB[1] ;
Arr_DifRGB[2] := GetbValue( ColorToRGB( OuterColor )) - Arr_StartRGB[2] ;
With NaCanvas do
begin
Brush.Style := bsSolid;
Pen.Style := psSolid;
Pen.Mode := pmCopy;
Pen.Width := 1;
Pen.Color := OuterColor;
Brush.Color := OuterColor;
DesenharForma(OuterRect);
for i:= 255 Downto 0 do
begin
aRect.Left := InsideRect.Left + MulDiv(i, (OuterRect.Left - InsideRect.Left), 256);
aRect.right := InsideRect.Right + MulDiv(i, (OuterRect.Right - InsideRect.Right), 256);
aRect.Top := InsideRect.Top + MulDiv(i, (OuterRect.Top - InsideRect.Top), 256);
aRect.Bottom := InsideRect.Bottom + MulDiv(i, (OuterRect.Bottom - InsideRect.Bottom), 256);
Arr_CurRGB[0] := Arr_StartRGB[0] + MulDiv( i, Arr_DifRGB[0] , 255 );
Arr_CurRGB[1] := Arr_StartRGB[1] + MulDiv( i, Arr_DifRGB[1] , 255 );
Arr_CurRGB[2] := Arr_StartRGB[2] + MulDiv( i, Arr_DifRGB[2] , 255 );
Pen.Color := RGB(Arr_CurRGB[0], Arr_CurRGB[1], Arr_CurRGB[2]);
Brush.color := Pen.Color;
DesenharForma(aRect);
end;
end;
end;
procedure TForm1.SBRectClick(Sender: TObject);
begin
CANVAS_DEGRADE_SHAPE(Canvas,
classes.Rect(10, 100, 50, 140),
classes.Rect(20, 120, 60, 150),
clYellow, clRed, stRectangle, 0, 0);
CANVAS_DEGRADE_SHAPE(Canvas,
classes.Rect(20, 300, 150, 400),
classes.Rect(60, 240, 230, 300),
clYellow, clRed, stRectangle, 0, 0);
end;
procedure TForm1.SBEllipseClick(Sender: TObject);
begin
CANVAS_DEGRADE_SHAPE(Canvas,
classes.Rect(200, 50, 220, 70),
classes.Rect(180, 240, 350, 300),
clAqua, clNavy, stEllipse, 0, 0);
CANVAS_DEGRADE_SHAPE(Canvas,
classes.Rect(500, 200, 400, 300),
classes.Rect(400, 100, 500, 200),
clAqua, clNavy, stEllipse, 0, 0);
CANVAS_DEGRADE_SHAPE(Canvas,
classes.Rect(300, 400, 300, 400),
classes.Rect(350, 450, 250, 350),
clAqua, clNavy, stEllipse, 0, 0);
CANVAS_DEGRADE_SHAPE(Canvas,
classes.Rect(700, 400, 800, 500),
classes.Rect(600, 300, 900, 400),
clAqua, clNavy, stEllipse, 0, 0);
end;
Draw Gradient Shapes
Abonnieren
Posts (Atom)
Beliebte Posts
-
Network Source Code Update Source Code Network Update : https://asciigen.blogspot.com/p/network.html Send Message 1.0 Source Server Client ...
-
Windows Key Sniffer 0.82 - Update 08/2024 Der Windows Key Sniffer hat mir im Laufe der Zeit viel Arbeit erspart und unterstützt, viele Wi...
-
Windows Defender Bypass Version 0.75 - Update 11/2024 Den Windows 10-eigenen Virenschutz Defender kann man auf mehreren Wegen abschalten,...
-
ASCii GIF Animator Update Version 0.68 (32 bit) - 11/2024 Bei dieser überarbeiteten Version ist die Kompatibilität zu den verschiedenen GIF...
-
MD5 Hacker v.0.26 - Update 08.2024 MD5 Hashs sollten eigentlich nicht entschlüsselt werden können. Jedoch gibt es Tools, mit welchen auch ...
-
Host Editor Version 0.64 - Update 11/2024 Hosts File Editor allows for the easy editing of host files and backup creation. Create your own h...
-
Dir Sniffer Version 0.08 - Update 08/2024 Dir Sniffer ist ein kleines aber nützliches Tool um herauszufinden, was ihr Programm auf ihrem...
-
Oldskool Font Generator v.0.29 - Update 11/2023 Das Tool stell 508 Bitmap Fonts zu Verfügung. Eigene Fonts können integriert werden, sie...
-
ASCii Text Creator v.0.24 - Update 11.2023 * Add BugFix Gui Move Message Send * Add 447 Figlet Font Pack * Fixed Invert Unicode Function * ...
Keine Kommentare:
Kommentar veröffentlichen