Click or drag to resize

PdfiumFPDFClipPath_GetClipBox Method

Get the bounding box for all paths and texts in this clipping path object.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static void FPDFClipPath_GetClipBox(
	IntPtr hClipPath,
	out float left,
	out float bottom,
	out float right,
	out float top
)

Parameters

hClipPath  IntPtr
Handle to a clipping path object. Returned by FPDFPageObj_GetClipPath(IntPtr), FPDF_CreateEmptyClipPath or FPDF_CreateClipPath(Single, Single, Single, Single).
left  Single
Pointer to a value receiving the left of a rectangle (in points).
bottom  Single
Pointer to a value receiving the top of a rectangle (in points).
right  Single
Pointer to a value receiving the right of a rectangle (in points).
top  Single
Pointer to a value receiving the bottom of a rectangle (in points).
See Also