Click or drag to resize

PdfPath AddBezier Method (Single, Single, Single, Single, Single, Single, Single, Single)

Adds a bezier curve.

Namespace: Spire.Pdf.Graphics
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public void AddBezier(
	float startPointX,
	float startPointY,
	float firstControlPointX,
	float firstControlPointY,
	float secondControlPointX,
	float secondControlPointY,
	float endPointX,
	float endPointY
)

Parameters

startPointX
Type: System Single
The start point X.
startPointY
Type: System Single
The start point Y.
firstControlPointX
Type: System Single
The first control point X.
firstControlPointY
Type: System Single
The first control point Y.
secondControlPointX
Type: System Single
The second control point X.
secondControlPointY
Type: System Single
The second control point Y.
endPointX
Type: System Single
The end point X.
endPointY
Type: System Single
The end point Y.
See Also