再学GDI+[58]: 路径

本例演示了把路径中的数据保存到一个文本文件, 然后再读出的过程.

本例效果图:

代码文件:unit Unit1;
interface
uses
 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
 Dialogs, StdCtrls;
type
 TForm1 = class(TForm)
  Button1: TButton;
  Button2: TButton;
  procedure FormCreate(Sender: TObject);
  procedure FormDestroy(Sender: TObject);
  procedure FormPaint(Sender: TObject);
  procedure Button1Click(Sender: TObject);
  procedure Button2Click(Sender: TObject);
 end;
var
 Form1: TForm1;
implementation
{$R *.dfm}
uses GDIPOBJ, GDIPAPI;
const
 FilePath = 'c:\temp\path.txt';
var
 path: TGPGraphicsPath;
 p: TGPPen;
procedure TForm1.FormCreate(Sender: TObject);
var
 pts: array[0..6] of TGPPoint;
 rect: TGPRect;
begin
 pts[0].X := 10; pts[0].Y := 50;
 pts[1].X := 40; pts[1].Y := 90;
 pts[2].X := 80; pts[2].Y := 10;
 pts[3].X := 110; pts[3].Y := 50;
 pts[4].X := 140; pts[4].Y := 10;
 pts[5].X := 180; pts[5].Y := 90;
 pts[6].X := 210; pts[6].Y := 50;
 path := TGPGraphicsPath.Create;
 path.AddBeziers(PGPPoint(@pts), Length(pts));
 path.GetBounds(rect);
 path.AddEllipse(rect);
 p := TGPPen.Create(aclBlue, 2);
 Button1.Caption := '保存路径数据';
 Button2.Caption := '读取路径数据';
end;
procedure TForm1.FormDestroy(Sender: TObject);
begin
 path.Free;
 p.Free;
end;
procedure TForm1.FormPaint(Sender: TObject);
var
 g: TGPGraphics;
begin
 g := TGPGraphics.Create(Canvas.Handle);
 g.DrawPath(p, path);
 g.Free;
end;
procedure TForm1.Button1Click(Sender: TObject);
var
 points: array of TGPPoint;
 types: array of Byte;
 List: TStringList;
 i: Integer;
begin
 SetLength(points, path.GetPointCount);
 SetLength(types, path.GetPointCount);
 path.GetPathPoints(PGPPoint(points), Length(points));
 path.GetPathTypes(PByte(types), Length(types));
 List := TStringList.Create;
 for i := 0 to Length(points) - 1 do
  List.Add(Format('%d,%d,%d', [points[i].X, points[i].Y, types[i]]));
 List.SaveToFile(FilePath);
 List.Free;
 Text := FilePath;
end;
procedure TForm1.Button2Click(Sender: TObject);
var
 points: array of TGPPoint;
 types: array of Byte;
 List1,List2: TStringList;
 i: Integer;
begin
 List1 := TStringList.Create;
 List2 := TStringList.Create;
 if not FileExists(FilePath) then Exit;
 List1.LoadFromFile(FilePath);
 SetLength(points, List1.Count);
 SetLength(types, List1.Count);
 for i := 0 to List1.Count - 1 do
 begin
  if List1[i] = '' then Break;
  List2.CommaText := List1[i];
  points[i].X := StrToIntDef(List2[0], 0);
  points[i].Y := StrToIntDef(List2[1], 0);
  types[i] := StrToIntDef(List2[2], 0);
 end;
 path.Reset;
 path.Free;
 path := TGPGraphicsPath.Create(PGPPoint(points), PByte(types), List1.Count);
 p.SetColor(aclRed);
 Repaint;
 List1.Free;
 List2.Free;
end;
end.

时间: 2024-10-10 17:40:07

再学GDI+[58]: 路径的相关文章

再学GDI+[69]: 路径画刷(9)

SetInterpolationColors 与 SetSurroundColors 的区别 本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ComCtrls, StdCtrls, ExtCtrls; type TForm1 = class(TForm) procedure FormPaint(Sen

再学GDI+[57]: 路径

路径的 Widen 方法可以把路径中的线, 根据指定画笔的宽度与样式, 转换为一个范围(有点 类似区域); 但转换后再描绘路径就只能使用 FillPath 而不是 DrawPath 了. 本例没有测试它 的两个默认参数, 因为前面已多次提到了. 本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdC

再学GDI+[65]: 路径画刷(5)

本例效果图: 代码文件: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

再学GDI+[64]: 路径画刷(4)

在本例中没有指定 CenterColor, 将默认白色; SurroundColors 原来是对应路径中的点(但按下面的做法在椭圆里不灵). 本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; type TForm1 = class(TForm) procedure FormPaint(Sender: T

再学GDI+[59]: 路径

通过路径的辅助类 TGPGraphicsPathIterator , 可以获得更多路径数据和控制能力. 本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) Button1: TButton; Button2: TButton; pr

再学GDI+[56]: 路径

通过路径的 Warp 方法可以让路径在一个范围内(四个点决定的范围)变换; 第一个参数可以是 3 个点或 4 个点的数组, 如果是 3 个的数组, 那么第 4 个点将自动跟 随一个平行四边形; 第二个参数用来指定点数组的个数, 本例就是通过这个参数控制了点的个数; 第三个参数是一个矩形, 这个矩形应该是路径的外接矩形, 之后的参数都是可选的; 第四个参数也是一个矩阵变换, 因由专门的 例子 , 这里没有尝试; 第五个参数是 TWarpMode(WarpModePerspective, WarpM

再学GDI+[55]: 路径

通过路径的 Flatten 方法可以把路径中的曲线拉直, 拉直到什么程度是由它的第二个参数( 默认0.25)决定的; 它的第一个参数又是一个矩阵变换, 也就是说 Flatten 可以同时进行矩阵 变换, 本例没有测试它, 其详情参见: http://www.cnblogs.com/del/archive/2008/06/20/1226293.html 本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Varia

再学GDI+[53]: 路径

本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls; type TForm1 = class(TForm) RadioGroup1: TRadioGroup; procedure FormCreate(Sender: TObject); procedure FormP

再学GDI+[52]: 路径

本例效果图: 代码文件:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm1 = class(TForm) CheckBox1: TCheckBox; CheckBox2: TCheckBox; procedure FormCreate(Sender: TObject); procedu