API referenceGraphics

pdfBezier_2_3

Cubic Bézier where the first control point equals the

CategoryPath construction

Purpose — Cubic Bézier where the first control point equals the current point and only the second is explicit (PDF v operator).

Declarations

C
BOOL32 __stdcall pdfBezier_2_3(PPDF IPDF, double x2, double y2, double x3, double y3);
Delphi
function pdfBezier_2_3(const IPDF: PPDF; x2, y2, x3, y3: Double): LongBool; stdcall; external 'LumasPdf.dll';

Parameters

ParameterTypeDescription
IPDFPPDFInstance handle.
x2, y2DoubleSecond control point.
x3, y3DoubleCurve endpoint.

Return valueTRUE on success; FALSE if no content stream is open.

See alsopdfBezier_1_3

C# (P/Invoke)

wrappers/dotnet/LumasPdf.cs
[return: MarshalAs(UnmanagedType.Bool)]
Area
Graphics
Category

Core

Exported names

pdfBezier_2_3

String variants

The …A form takes UTF-8, …W takes UTF-16; a bare name aliases the ANSI form.

See working code

Worked examples — complete programs in ten languages.