 | PdfiumFPDFPageObj_TransformClipPath Method |
Transform (scale, rotate, shear, move) the clip path of page object.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFPageObj_TransformClipPath(
IntPtr page_object,
double a,
double b,
double c,
double d,
double e,
double f
)
Public Shared Sub FPDFPageObj_TransformClipPath (
page_object As IntPtr,
a As Double,
b As Double,
c As Double,
d As Double,
e As Double,
f As Double
)
public:
static void FPDFPageObj_TransformClipPath(
IntPtr page_object,
double a,
double b,
double c,
double d,
double e,
double f
)
static member FPDFPageObj_TransformClipPath :
page_object : IntPtr *
a : float *
b : float *
c : float *
d : float *
e : float *
f : float -> unit
public static void FPDFPageObj_TransformClipPath(
IntPtr page_object,
double a,
double b,
double c,
double d,
double e,
double f
)
Patagames.Pdf.Pdfium.FPDFPageObj_TransformClipPath = function(page_object, a, b, c, d, e, f);
Parameters
- page_object IntPtr
- page_object - Handle to a page object. Returned by FPDFPageObj_NewImgeObj(IntPtr) function.
- a Double
- The coefficient "a" of the matrix
- b Double
- The coefficient "b" of the matrix
- c Double
- The coefficient "c" of the matrix
- d Double
- The coefficient "d" of the matrix
- e Double
- The coefficient "e" of the matrix
- f Double
- The coefficient "f" of the matrix
See Also