Click or drag to resize
CanvasBitmapGetPixelColors Method (Int32, Int32, Int32, Int32)
Returns an array of color data for a subregion of the bitmap.

Namespace:  Microsoft.Graphics.Canvas
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public Color[] GetPixelColors(
	int left,
	int top,
	int width,
	int height
)

Parameters

left
Type: SystemInt32
top
Type: SystemInt32
width
Type: SystemInt32
height
Type: SystemInt32

Return Value

Type: Color
Remarks
  • The Format must be DirectXPixelFormat.B8G8R8A8UintNormalized.
  • left, top, width and height are specified in pixels (not DIPs).
  • The size of the returned array is width * height.
See Also