 | PdfiumFPDFBitmap_GetPixel Method |
Gets the color value of the pixel at the specified coordinates.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static uint FPDFBitmap_GetPixel(
IntPtr bitmap,
int x,
int y
)
Public Shared Function FPDFBitmap_GetPixel (
bitmap As IntPtr,
x As Integer,
y As Integer
) As UInteger
public:
static unsigned int FPDFBitmap_GetPixel(
IntPtr bitmap,
int x,
int y
)
static member FPDFBitmap_GetPixel :
bitmap : IntPtr *
x : int *
y : int -> uint32
public static UInt32 FPDFBitmap_GetPixel(
IntPtr bitmap,
int x,
int y
)
Patagames.Pdf.Pdfium.FPDFBitmap_GetPixel = function(bitmap, x, y);
Parameters
- bitmap IntPtr
- A handle to the device independent bitmap.
- x Int32
- The x-coordinate of the pixel to retrieve.
- y Int32
- The y-coordinate of the pixel to retrieve.
Return Value
UInt32An uint value that represents the color of the specified pixel.
See Also