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

  1. uses
  2.   Graph;
  3. var
  4.   Gd, Gm : integer;
  5.   P      : pointer;
  6.   Size   : word;
  7. begin
  8.   Gd := Detect;
  9.   InitGraph(Gd, Gm, '');
  10.   if GraphResult <> grOk then
  11.     Halt(1);
  12.   Bar(0, 0, GetMaxX, GetMaxY);
  13.   Size := ImageSize(10,20,30,40);
  14.   GetMem(P, Size); { Allocate memory on heap }
  15.   GetImage(10,20,30,40,P^);
  16.   Readln;
  17.   ClearDevice;
  18.   PutImage(100, 100, P^, NormalPut);
  19.   Readln;
  20.   CloseGraph;
  21. end.
  22.  
  23.