 | PdfiumFPDFImageObj_SetMatrix(IntPtr, Double, Double, Double, Double, Double, Double) Method |
Set the matrix of an image object
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFImageObj_SetMatrix(
IntPtr image_object,
double a,
double b,
double c,
double d,
double e,
double f
)
Public Shared Sub FPDFImageObj_SetMatrix (
image_object As IntPtr,
a As Double,
b As Double,
c As Double,
d As Double,
e As Double,
f As Double
)
public:
static void FPDFImageObj_SetMatrix(
IntPtr image_object,
double a,
double b,
double c,
double d,
double e,
double f
)
static member FPDFImageObj_SetMatrix :
image_object : IntPtr *
a : float *
b : float *
c : float *
d : float *
e : float *
f : float -> unit
public static void FPDFImageObj_SetMatrix(
IntPtr image_object,
double a,
double b,
double c,
double d,
double e,
double f
)
Patagames.Pdf.Pdfium.FPDFImageObj_SetMatrix = function(image_object, a, b, c, d, e, f);
Parameters
- image_object IntPtr
- Handle to image object returned by FPDFPageObj_NewImgeObj(IntPtr).
- 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