home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 11 / 11.iso / m / m360 / 1.ddi / PCX.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-12-13  |  1009 b   |  48 lines

  1. #include "conio.h"
  2. #include "malloc.h"
  3. #include "stdio.h"
  4. #include "stdlib.h"
  5. #include "graph.h"
  6.  
  7. void pcx_show(char *, int, int, int);  /*[ pcx_file_name,
  8.                        Border's Palette Color number,
  9.                            if <0, meaning no border
  10.                            for 16 colors, from 0 to 15;
  11.                            for VGA256   , from 0 to 255.
  12.                        Begin X: (Left),
  13.                        Begin Y: (top) ]*/
  14.  
  15.  
  16.  
  17. main(argc, argv)
  18.      int   argc;
  19.      char *argv[];
  20. {
  21.   struct videoconfig vc;
  22.   FILE *fp_in;
  23.  
  24.   if (argc !=2) { printf("\nYou must enter command line as following format:\n");
  25.           printf("\nQC-DISP <filename of MicroSoft image file>\n");
  26.           getch();
  27.           exit(1);
  28.         }
  29.   if ( (fp_in=fopen(argv[1],"rb"))==NULL )
  30.      { printf("\nCan't open Microsoft Image file [%s] !!!",argv[1]);
  31.        getch();
  32.        exit(5);
  33.      }
  34.   fclose(fp_in);
  35.   _setvideomode(_MAXRESMODE);
  36.  
  37.   pcx_show(argv[1],10, 1,1);
  38.   getch();
  39.  
  40.   _setvideomode(_DEFAULTMODE);
  41.   _clearscreen(_GCLEARSCREEN);
  42.   return(0);
  43. }
  44.  
  45.  
  46.  
  47.  
  48.