GdipBitmapSetPixel (gdiplus)
Last changed: carlmthomas@alltel.net-69.40.173.217

.
Summary
Set the pixel color at position (x,y) in a bitmap.

C# Signature:

[DllImport("gdiplus.dll", CharSet=CharSet.Unicode, ExactSpelling=true)]
static extern int GdipBitmapSetPixel(HandleRef bitmap, int x, int y, int argb);

VB Signature:

Declare Function GdipBitmapSetPixel Lib "gdiplus.dll" (TODO) As Int

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

In the Bitmap class in the System.Drawing namespace (C# version):

    bitmap.SetPixel(int x, int y, Color color);

Documentation