|
BitmapExtensionsFromPixelData Method
|
Converts from an array of pixel data to a
Bitmap image.
Namespace: GSF.DrawingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax public static Bitmap FromPixelData(
int width,
uint[] pixelData
)
GSF.Drawing.BitmapExtensions.FromPixelData = function(width, pixelData);
View SourceParameters
- width Int32
- The width of the bitmap.
- pixelData UInt32
- The values of individual pixels in ARGB format.
Return Value
BitmapA bitmap image converted from the pixel data.
See Also