home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l043 / 3.ddi / GETPIX.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1987-11-02  |  290 b   |  16 lines

  1. uses
  2.   Graph;
  3. var
  4.   Gd, Gm     : integer;
  5.   PixelColor : word;
  6. begin
  7.   Gd := Detect;
  8.   InitGraph(Gd, Gm, '');
  9.   if GraphResult <> grOk then
  10.     Halt(1);
  11.   PixelColor := GetPixel(10,10);
  12.   if PixelColor = 0 then
  13.     PutPixel(10, 10, GetMaxColor);
  14.   Readln;
  15.   CloseGraph;
  16. end.