FPDFPageObj_TransformClipPath method

void FPDFPageObj_TransformClipPath(
  1. FPDF_PAGEOBJECT page_object,
  2. double a,
  3. double b,
  4. double c,
  5. double d,
  6. double e,
  7. double f,
)

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);
}