Click or drag to resize

PdfiumFPDFClipPath_Transform Method

Transform (scale, rotate, shear, move) all the 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_Transform(
	IntPtr hClipPath,
	float a,
	float b,
	float c,
	float d,
	float e,
	float f
)

Parameters

hClipPath  IntPtr
Handle to a clipping path object. Returned by FPDFPageObj_GetClipPath(IntPtr), FPDF_CreateEmptyClipPath or FPDF_CreateClipPath(Single, Single, Single, Single).
a  Single
The coefficient "a" of the matrix
b  Single
The coefficient "b" of the matrix
c  Single
The coefficient "c" of the matrix
d  Single
The coefficient "d" of the matrix
e  Single
The coefficient "e" of the matrix
f  Single
The coefficient "f" of the matrix
See Also