FPDFPageObj_TransformClipPath function

  1. @Native<Void Function(FPDF_PAGEOBJECT, Double, Double, Double, Double, Double, Double)>(FPDF_PAGEOBJECT, ffi.Double, ffi.Double, ffi.Double, ffi.Double, ffi.Double, ffi.Double)>()
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

@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,
);