Difference between revisions of "GetColors"
From SCAR Divi Manual
Line 7: | Line 7: | ||
SCAR Divi 3.00 > Current | SCAR Divi 3.00 > Current | ||
− | * Returned TIntegerArray before SCAR Divi 3.28. | + | * Returned [[TIntegerArray]] before SCAR Divi 3.28. |
==Description== | ==Description== |
Latest revision as of 10:16, 21 October 2011
Definition
function GetColors(Coords: TPointArray): TIntArray;
Availability
SCAR Divi 3.00 > Current
- Returned TIntegerArray before SCAR Divi 3.28.
Description
Gets the color of the pixels specified by the coordinates in the TPointArray Coords and returns them in a TIntArray with the same order.
Example
var i: Integer; ia: TIntegerArray; begin ia := GetColors([Point(0, 5), Point(50, 78), Point(79, 47)]); for i := Low(ia) to High(ia) do WriteLn(ia[i]); end.