FPDFPageObj_TransformClipPath method
void
FPDFPageObj_TransformClipPath()
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
void FPDFPageObj_TransformClipPath(
FPDF_PAGEOBJECT page_object,
double a,
double b,
double c,
double d,
double e,
double f,
) {
return _FPDFPageObj_TransformClipPath(page_object, a, b, c, d, e, f);
}