This method gets pixels starting at x,y and continuing to the end of the raster and then to the next rasters
until either n pixels has been reached or the end of the image is reached.
Namespace:
ProScript
Assembly:
proscript-csharp (in proscript-csharp.dll) Version: 1.2.79.0 (1.2.79.0)
Syntax public Color[] GetPixels(
int x,
int y,
int n
)
Public Function GetPixels (
x As Integer,
y As Integer,
n As Integer
) As Color()
public:
array<Color>^ GetPixels(
int x,
int y,
int n
)
member GetPixels :
x : int *
y : int *
n : int -> Color[]
Parameters
- x
- Type: SystemInt32
starting location in a raster from the left. - y
- Type: SystemInt32
starting raster from the top - n
- Type: SystemInt32
number of pixels to get, max 256
Return Value
Type:
Color[Missing <returns> documentation for "M:ProScript.Device.GetPixels(System.Int32,System.Int32,System.Int32)"]
See Also