Docs PDFiumVCL

AddPath method

Questa voce API conserva identificatori, firme, blocchi di codice e termini PDF nella forma originale.
Component: TPdf  ·  Unit: PDFium
Commits the accumulated MoveTo/LineTo/BezierTo path as a new page object with the requested paint.

Syntax

procedure AddPath(StrokeColor: TColor; LineWidth: Double = 1; FillColor: TColor = clNone; FillMode: TPdfFillMode = fmNone)

Description

Commits the accumulated MoveTo/LineTo/BezierTo path as a new page object with the requested paint.

Call after the geometry is fully described; pass FillMode = fmWinding or fmAlternate to fill, or fmNone to stroke only.

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, Rectangle, AddImage