FPDFPage_TransformAnnots method
void
FPDFPage_TransformAnnots()
Transform all annotations in |page|.
page - handle to a page. 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 |page| annotations.
Implementation
void FPDFPage_TransformAnnots(
FPDF_PAGE page,
double a,
double b,
double c,
double d,
double e,
double f,
) {
return _FPDFPage_TransformAnnots(page, a, b, c, d, e, f);
}