37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
Raw2Gif
|
|
-------
|
|
|
|
Program to convert RAW image data into GIF files. Only one image can be
|
|
handled. The RAW image file, assumes to hold one pixel color in one byte,
|
|
and therefore the file size must be Width times Height as specified by the
|
|
-s option below.
|
|
|
|
Usage:
|
|
------
|
|
|
|
Usage: Raw2Gif [-q] -s Width Height [-p ColorMapFile] [-h] RawFile
|
|
|
|
If no RawFile is given, Raw2Gif will try to read stdin for RAW data.
|
|
Gif File is dumped to stdout.
|
|
|
|
Memory required:
|
|
----------------
|
|
|
|
Line.
|
|
|
|
|
|
Options:
|
|
--------
|
|
|
|
1. [-q] : quite mode. Default off on MSDOS, on on unix. Controls printout
|
|
of running scan lines. Use -q- to turn off.
|
|
2. -s Width Height : the dimensions of the image MUST be specified in the
|
|
command line. The RAW image file size must be exactly Width times Height
|
|
bytes (each byte is one pixel color).
|
|
3. [-p ColorMapFile] : Color map to load for given RAW image. This file has
|
|
4 integers in line (ColorIndex Red Green Blue), and the ColorIndex is
|
|
in order starting from 1. See GifClrMp, which can also use/create these
|
|
bitmap files. If no color map is specified, uses the EGA 16 color pallete
|
|
as default color map.
|
|
4. [-h] : print one command line help, similar to Usage above.
|