PDFiumVCL 文件

ClosePath method

此 API 條目保留識別符號、簽名、程式碼塊和 PDF 術語的原始形式。
Component: TPdf  ·  Unit: PDFium
Closes the current sub-path by drawing a straight line back to the most recent MoveTo.

Syntax

procedure ClosePath

Description

Closes the current sub-path by drawing a straight line back to the most recent MoveTo.

Required before stroking/filling a polygon to ensure the last segment is rendered.

All edits to the current page are buffered in PDFium's in-memory representation. Call UpdatePage to refresh the rendering cache and SaveToFile to persist the changes.

Remarks

Example

begin
  if Pdf1.Active then
  begin
    Pdf1.MoveTo(100, 100);
    Pdf1.LineTo(200, 150);
    Pdf1.LineTo(200, 200);
    Pdf1.ClosePath;
    Pdf1.AddPath(clRed, 1.5, clYellow, fmWinding);
    Pdf1.UpdatePage;
  end;
end;

See Also

MoveTo, LineTo, BezierTo, AddPath