 | PdfiumFPDFImageObj_GetPixelSize Method |
Get size of the image in pixels.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFImageObj_GetPixelSize(
IntPtr image_obj,
out int width,
out int height
)
Public Shared Function FPDFImageObj_GetPixelSize (
image_obj As IntPtr,
<OutAttribute> ByRef width As Integer,
<OutAttribute> ByRef height As Integer
) As Boolean
public:
static bool FPDFImageObj_GetPixelSize(
IntPtr image_obj,
[OutAttribute] int% width,
[OutAttribute] int% height
)
static member FPDFImageObj_GetPixelSize :
image_obj : IntPtr *
width : int byref *
height : int byref -> bool
public static boolean FPDFImageObj_GetPixelSize(
IntPtr image_obj,
/** @attribute OutAttribute */ /** @ref */int width,
/** @attribute OutAttribute */ /** @ref */int height
)
Patagames.Pdf.Pdfium.FPDFImageObj_GetPixelSize = function(image_obj, width, height);
Parameters
- image_obj IntPtr
- The handle to an image object.
- width Int32
- The width in pixels of the specified image object.
- height Int32
- The height in pixels of the specified image object.
Return Value
BooleanReturns TRUE on success; FALSE otherwise.
See Also