 | PdfiumFPDFPage_TransformAnnots Method |
Transform (scale, rotate, shear, move) all annots in a page.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFPage_TransformAnnots(
IntPtr page,
double a,
double b,
double c,
double d,
double e,
double f
)
Public Shared Sub FPDFPage_TransformAnnots (
page As IntPtr,
a As Double,
b As Double,
c As Double,
d As Double,
e As Double,
f As Double
)
public:
static void FPDFPage_TransformAnnots(
IntPtr page,
double a,
double b,
double c,
double d,
double e,
double f
)
static member FPDFPage_TransformAnnots :
page : IntPtr *
a : float *
b : float *
c : float *
d : float *
e : float *
f : float -> unit
public static void FPDFPage_TransformAnnots(
IntPtr page,
double a,
double b,
double c,
double d,
double e,
double f
)
Patagames.Pdf.Pdfium.FPDFPage_TransformAnnots = function(page, a, b, c, d, e, f);
Parameters
- page IntPtr
- Handle to a page. Returned by FPDFPage_New(IntPtr, Int32, Double, Double) and others
- a Double
- The coefficient "a" of the matrix
- b Double
- The coefficient "b" of the matrix
- c Double
- The coefficient "c" of the matrix
- d Double
- The coefficient "d" of the matrix
- e Double
- The coefficient "e" of the matrix
- f Double
- The coefficient "f" of the matrix
See Also