FastGetPixel

From SCAR Divi Manual
Revision as of 03:32, 4 September 2011 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> function FastGetPixel(bitmap: Integer; x, y: Integer): Integer; </source> ==Availability== SCAR Divi 3.00 > Current ==Descript...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function FastGetPixel(bitmap: Integer; x, y: Integer): Integer;

Availability

SCAR Divi 3.00 > Current

Description

Returns the color at the given coordinate (x, y) on the bitmap given by the index b.

Example

var
  b, c: Integer;

begin
  b := BitmapFromString(1, 1, '');
  FastSetPixel(b, 0, 0, 123456);
  c := FastGetPixel(b, 0, 0);
  WriteLn(c);
end.

Output:

123456

See Also