FPDFImageObj_SetMatrix method
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
int FPDFImageObj_SetMatrix(
FPDF_PAGEOBJECT image_object,
double a,
double b,
double c,
double d,
double e,
double f,
) {
return _FPDFImageObj_SetMatrix(image_object, a, b, c, d, e, f);
}