 | PdfiumFPDFBitmap_GetBuffer Method |
Returns pointer to an array of bytes that contains the pixel data of the bitmap.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FPDFBitmap_GetBuffer(
IntPtr bitmap
)
Public Shared Function FPDFBitmap_GetBuffer (
bitmap As IntPtr
) As IntPtr
public:
static IntPtr FPDFBitmap_GetBuffer(
IntPtr bitmap
)
static member FPDFBitmap_GetBuffer :
bitmap : IntPtr -> IntPtr
public static IntPtr FPDFBitmap_GetBuffer(
IntPtr bitmap
)
Patagames.Pdf.Pdfium.FPDFBitmap_GetBuffer = function(bitmap);
Parameters
- bitmap IntPtr
- A handle to the device independent bitmap.
Return Value
IntPtrThe pointer to the first byte of the bitmap buffer.
RemarksApplications can use this function to get the bitmap buffer pointer, then manipulate any color and/or alpha values for any pixels in the bitmap.
See Also