FPDFPageObj_TransformClipPath function
Transform (scale, rotate, shear, move) the clip path of page object. page_object - Handle to a page object. Returned by FPDFPageObj_NewImageObj().
a - The coefficient "a" of the matrix. b - The coefficient "b" of the matrix. c - The coefficient "c" of the matrix. d - The coefficient "d" of the matrix. e - The coefficient "e" of the matrix. f - The coefficient "f" of the matrix.
Implementation
@ffi.Native<
ffi.Void Function(
FPDF_PAGEOBJECT,
ffi.Double,
ffi.Double,
ffi.Double,
ffi.Double,
ffi.Double,
ffi.Double,
)
>()
external void FPDFPageObj_TransformClipPath(
FPDF_PAGEOBJECT page_object,
double a,
double b,
double c,
double d,
double e,
double f,
);