 | PdfiumFPDFImageObj_GetMatrix(IntPtr, Double, Double, Double, Double, Double, Double) Method |
Get the matrix of an image object
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFImageObj_GetMatrix(
IntPtr image_object,
out double a,
out double b,
out double c,
out double d,
out double e,
out double f
)
Public Shared Sub FPDFImageObj_GetMatrix (
image_object As IntPtr,
<OutAttribute> ByRef a As Double,
<OutAttribute> ByRef b As Double,
<OutAttribute> ByRef c As Double,
<OutAttribute> ByRef d As Double,
<OutAttribute> ByRef e As Double,
<OutAttribute> ByRef f As Double
)
public:
static void FPDFImageObj_GetMatrix(
IntPtr image_object,
[OutAttribute] double% a,
[OutAttribute] double% b,
[OutAttribute] double% c,
[OutAttribute] double% d,
[OutAttribute] double% e,
[OutAttribute] double% f
)
static member FPDFImageObj_GetMatrix :
image_object : IntPtr *
a : float byref *
b : float byref *
c : float byref *
d : float byref *
e : float byref *
f : float byref -> unit
public static void FPDFImageObj_GetMatrix(
IntPtr image_object,
/** @attribute OutAttribute */ /** @ref */double a,
/** @attribute OutAttribute */ /** @ref */double b,
/** @attribute OutAttribute */ /** @ref */double c,
/** @attribute OutAttribute */ /** @ref */double d,
/** @attribute OutAttribute */ /** @ref */double e,
/** @attribute OutAttribute */ /** @ref */double f
)
Patagames.Pdf.Pdfium.FPDFImageObj_GetMatrix = function(image_object, a, b, c, d, e, f);
Parameters
- image_object IntPtr
- Handle to image object returned by FPDFPageObj_NewImgeObj(IntPtr)
- a Double
- Pointer to a float value receiving the coefficient "a" of the matrix.
- b Double
- Pointer to a float value receiving the coefficient "b" of the matrix.
- c Double
- Pointer to a float value receiving the coefficient "c" of the matrix.
- d Double
- Pointer to a float value receiving the coefficient "d" of the matrix.
- e Double
- Pointer to a float value receiving the coefficient "e" of the matrix.
- f Double
- Pointer to a float value receiving the coefficient "f" of the matrix.
See Also