Difference between revisions of "GetBitmapAreaColors"
From SCAR Divi Manual
Line 5: | Line 5: | ||
==Availability== | ==Availability== | ||
− | SCAR Divi 3.00 > 3. | + | SCAR Divi 3.00 > 3.34 |
==Description== | ==Description== |
Latest revision as of 11:10, 25 July 2012
Contents
Definition
function GetBitmapAreaColors(xs, ys, xe, ye: Integer): T2DIntArray;
Availability
SCAR Divi 3.00 > 3.34
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.