FPDFImageObj_SetMatrix function
Set the transform matrix of |image_object|.
image_object - handle to an image object. a - matrix value. b - matrix value. c - matrix value. d - matrix value. e - matrix value. f - matrix value.
The matrix is composed as: |a c e| |b d f| and can be used to scale, rotate, shear and translate the |image_object|.
Returns TRUE on success.
Implementation
@ffi.Native<
FPDF_BOOL Function(
FPDF_PAGEOBJECT,
ffi.Double,
ffi.Double,
ffi.Double,
ffi.Double,
ffi.Double,
ffi.Double,
)
>()
external int FPDFImageObj_SetMatrix(
FPDF_PAGEOBJECT image_object,
double a,
double b,
double c,
double d,
double e,
double f,
);