Difference between revisions of "FindColor"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <func>function FindColor(var x, y: Integer; Color, xs, ys, xe, ye: Integer): Boolean;</func> ==Availability== SCAR Divi 3.00 > Current ==Description== This funct...")
 
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
[[File:FindColor.gif|right]]
 +
 
==Definition==
 
==Definition==
<func>function FindColor(var x, y: Integer; Color, xs, ys, xe, ye: Integer): Boolean;</func>
+
<source lang="scar" lines="false">
 +
function FindColor(out X, Y: Integer; const Color, XS, YS, XE, YE: Integer): Boolean;
 +
</source>
  
 
==Availability==
 
==Availability==
Line 6: Line 10:
  
 
==Description==
 
==Description==
This function searches for a given color specified by '''Color''' inside of a given search area specified by '''xs''', '''ys''', '''xe''', '''ye'''. The search area is given as a set of upper-left ('''xs''', '''ys''') and lower-right ('''xe''', '''ye''') coordinates which are specified relative to the selected client window. The function returns [[False]] if the color was not found, if it was it returns [[True]] and the coordinates of the found color in ('''x''', '''y''').
+
This function searches for a given color specified by '''Color''' using a scan-line pattern. The search area is given as a set of upper-left ('''XS''', '''YS''') and lower-right ('''XE''', '''YE''') coordinates which are specified relative to the selected client window. If the given search area is invalid ('''XS''' > '''XE''' or '''YS''' > '''YE'''), an exception is thrown.
 +
 
 +
The function returns [[false]] if the color was not found, if it was it returns [[true]] and the coordinates of the found color in ('''X''', '''Y'''). The search will stop after the first instance of the color was found.
  
 
==Example==
 
==Example==
 
<source lang="scar">
 
<source lang="scar">
 
var
 
var
   w, h: Integer;
+
   W, H: Integer;
   x, y: Integer;
+
   X, Y: Integer;
 +
 
begin
 
begin
   GetClientDimensions(w, h);
+
   GetBoxSize(GetClient.ImageArea, W, H);
   if FindColor(x, y, 0, 0, 0, w - 1, h - 1) then
+
   if FindColor(X, Y, 0, 0, 0, W - 1, H - 1) then
     WriteLn('Found color at ' + IntToStr(x) + ', ' + IntToStr(y));
+
     WriteLn('Found color at ' + IntToStr(X) + ', ' + IntToStr(Y));
 
end.
 
end.
 
</source>
 
</source>
  
 
==See Also==
 
==See Also==
*[[FindColorTolerance]]
+
*[[FindColorTol]]
 +
*[[FindColorEx]]
 
*[[FindColorSpiral]]
 
*[[FindColorSpiral]]
 +
*[[CountColor]]
 +
*[[FindColors]]
 
*[[GetColor]]
 
*[[GetColor]]
  
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:Color Functions]]
 
[[Category:Color Functions]]

Latest revision as of 21:19, 7 August 2012

FindColor.gif

Definition

function FindColor(out X, Y: Integer; const Color, XS, YS, XE, YE: Integer): Boolean;

Availability

SCAR Divi 3.00 > Current

Description

This function searches for a given color specified by Color using a scan-line pattern. The search area is given as a set of upper-left (XS, YS) and lower-right (XE, YE) coordinates which are specified relative to the selected client window. If the given search area is invalid (XS > XE or YS > YE), an exception is thrown.

The function returns false if the color was not found, if it was it returns true and the coordinates of the found color in (X, Y). The search will stop after the first instance of the color was found.

Example

var
  W, H: Integer;
  X, Y: Integer;
 
begin
  GetBoxSize(GetClient.ImageArea, W, H);
  if FindColor(X, Y, 0, 0, 0, W - 1, H - 1) then
    WriteLn('Found color at ' + IntToStr(X) + ', ' + IntToStr(Y));
end.

See Also