home *** CD-ROM | disk | FTP | other *** search
/ Graphics 16,000 / graphics-16000.iso / msdos / viewers / grabsc11 / raw2gif.doc < prev    next >
Text File  |  1989-10-15  |  1KB  |  35 lines

  1.             Raw2Gif
  2.             -------
  3.  
  4. Program to convert RAW image data into GIF files. Only one image can be
  5. handled. The RAW image file, assumes to hold one pixel color in one byte,
  6. and therefore the file size must be Width times Height as specified by the
  7. -s option below.
  8.  
  9. Usage:
  10. ------
  11.  
  12. Usage: Raw2Gif -s Width Height [-p ColorMapFile] [-h] RawFile
  13.  
  14.   If no RawFile is given, Raw2Gif will try to read stdin for RAW data.
  15. Gif File is dumped to stdout.
  16.  
  17. Memory required:
  18. ----------------
  19.  
  20. Line.
  21.  
  22.  
  23. Options:
  24. --------
  25.  
  26. 1. -s Width Height : the dimensions of the image MUST be specified in the
  27.    command line. The RAW image file size must be exactly Width times Height
  28.    bytes (each byte is one pixel color).
  29. 2. [-p ColorMapFile] : Color map to load for given RAW image. This file has
  30.    4 integers in line (ColorIndex Red Green Blue), and the ColorIndex is
  31.    in order starting from 1. See GifClrMp, which can also use/create these
  32.    bitmap files. If no color map is specified, uses the EGA 16 color pallete
  33.    as default color map.
  34. 3. [-h] : print one command line help, similar to Usage above.
  35.