Click or drag to resize

Pdfium.FPDFClipPath_AppendPath Method

Append the specified path to the specified clipping path object.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static void FPDFClipPath_AppendPath(
	IntPtr hClipPath,
	IntPtr path,
	FillModes type,
	bool bAutoMerge
)

Parameters

hClipPath  IntPtr
Handle to a clipping path object. Returned by FPDFPageObj_GetClipPath(IntPtr), FPDF_CreateEmptyClipPath() or FPDF_CreateClipPath(Single, Single, Single, Single).
path  IntPtr
Handle to the path.
type  FillModes
The fill mode types defined following. None, Alternate and Winding.
bAutoMerge  Boolean
True for auto merge. Means to connect the last point of the previous path, if any, with the specified path.
See Also