home *** CD-ROM | disk | FTP | other *** search
- {-----------------------------------------------------------------------------}
- { TEGL Windows ToolKit II }
- { Copyright (C) 1990, 1991 TEGL Systems Corporation }
- { All Rights Reserved. }
- {-----------------------------------------------------------------------------}
-
- uses pcxgraph;
-
- var pcxname : string;
- pcxhead : pcxheader;
-
- begin
- writeln('PCX Show Header, Copyright (c) TEGL Systems Corporation 1991');
- writeln;
- if paramcount < 1 then
- begin
- writeln('Usage: PCXHEAD <source[.PCX]>');
- writeln;
- halt;
- end;
-
- pcxname := paramstr(1);
-
- if pos('.',pcxname)=0 then
- pcxname := pcxname + '.PCX';
-
- Writeln('PCX Header information for ',pcxname);
- getpcxheader(pcxname,pcxhead);
- listpcxheaderinfo(pcxhead);
- end.
-