Difference between revisions of "GetBitmapAreaColors"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function GetBitmapAreaColors(xs, ys, xe, ye: Integer): T2DIntArray; </source> ==Availability== SCAR Divi 3.00 > Current ==Desc...") |
(No difference)
|
Revision as of 16:57, 5 July 2011
Contents
Definition
function GetBitmapAreaColors(xs, ys, xe, ye: Integer): T2DIntArray;
Availability
SCAR Divi 3.00 > Current
Description
Returns a T2DIntArray filled with all of the colors in the area specified by the upper-left coordinate (xs, ys) and the lower-right coordinate (xe, ye) of the currently selected client window. The resulting array is specified as Array[x][y].
Example
var iaa: T2DIntArray; begin iaa := GetBitmapAreaColors(0, 0, 40, 30); WriteLn(iaa[38][20]); end.