Registriert seit: 17. Jan 2007
1.169 Beiträge
Turbo Delphi für Win32
|
Re: Figur auf TImage zeichnen.
23. Jul 2007, 15:22
Polygon und Rectangle könnte man dazu auch noch verwenden.
Delphi-Quellcode:
with Image1.Canvas do
begin
Brush.Style:= bsClear;
Polygon([Point(50,20), Point(300,20),Point(270,70),Point(20,70)]);
Brush.Style:= bsSolid;
Polygon([Point(50,10), Point(300,10),Point(270,60),Point(20,60)]);
MoveTo(300,10);
LineTo(300,20);
MoveTo(270,60);
LineTo(270,70);
MoveTo(20,60);
LineTo(20,70);
end;
Gruß bitsetter
"Viele Wege führen nach Rom" Wolfgang Mocker (geb. 1954), dt. Satiriker und Aphoristiker
|
|
Zitat
|