home *** CD-ROM | disk | FTP | other *** search
-
- {QUIKPLOT.PAS}
-
- {$U+,V-}
- var z,zi,tz,tzi,c,ci,size,acorn,bcorn,side,mgap,ngap:real;
- RecItem,BuffItem,m,n,half:integer;
- clr,count:byte;
- ch:char;
- outfile:file;
- AnyString:String[20];
- Filename:String[8];
- Buffer: Array[1..128,1..256] of Char;
- OK : Boolean;
- {$I Graph.p }
- {$I Beeper.pas}
- begin
- Write('Picture Name ? ');
- Readln(Filename);
- AnyString:=Filename+'.PIC';
- Assign(outfile,AnyString);
- reset(outfile);
- BlockRead(Outfile,Buffer,256);
- GraphColorMode;
- PutPic(Buffer,1,199);
- Close(outfile);
- Repeat Until Keypressed;
- read(kbd,ch);
- TextMode;
- end.