PDFiumVCL Docs

BezierTo method

Dieser API-Eintrag behält Bezeichner, Signaturen, Codeblöcke und PDF-Begriffe in ihrer Originalform.
Component: TPdf  ·  Unit: PDFium
Appends a cubic Bezier curve from the current point through control points (X1,Y1) and (X2,Y2) to (X3,Y3).

Syntax

procedure BezierTo(X1, Y1, X2, Y2, X3, Y3: Double)

Description

Appends a cubic Bezier curve from the current point through control points (X1,Y1) and (X2,Y2) to (X3,Y3).

Compose rounded corners and arbitrary curves; matches PDF "c" operator semantics.

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, ClosePath, AddPath