 | PdfiumFPDFBitmap_SetPixel Method |
Sets the pixel at the specified coordinates to the specified color.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFBitmap_SetPixel(
IntPtr bitmap,
int x,
int y,
uint color
)
Public Shared Sub FPDFBitmap_SetPixel (
bitmap As IntPtr,
x As Integer,
y As Integer,
color As UInteger
)
public:
static void FPDFBitmap_SetPixel(
IntPtr bitmap,
int x,
int y,
unsigned int color
)
static member FPDFBitmap_SetPixel :
bitmap : IntPtr *
x : int *
y : int *
color : uint32 -> unit
public static void FPDFBitmap_SetPixel(
IntPtr bitmap,
int x,
int y,
UInt32 color
)
Patagames.Pdf.Pdfium.FPDFBitmap_SetPixel = function(bitmap, x, y, color);
Parameters
- bitmap IntPtr
- A handle to the device independent bitmap.
- x Int32
- The x-coordinate of the pixel to set.
- y Int32
- The y-coordinate of the pixel to set.
- color UInt32
- An uint value that represents the color to assign to the specified pixel.
See Also