37 lines
936 B
Plaintext
37 lines
936 B
Plaintext
Gif2RGB
|
|
-------
|
|
|
|
Program to convert images saved as GIF to 24 bits RGB image(s).
|
|
|
|
|
|
Usage:
|
|
------
|
|
|
|
Usage: Gif2RGB [-q] [-1] [-o OutFileName] [-h] GifFile
|
|
|
|
If no GifFile is given, Gif2RGB will try to read stdin for GIF file.
|
|
|
|
|
|
Memory required:
|
|
----------------
|
|
|
|
Screen.
|
|
|
|
|
|
Options:
|
|
--------
|
|
|
|
1. [-q] : quite mode. Default off on MSDOS, on on unix. Controls printout
|
|
of running scan lines. Use -q- to turn off.2
|
|
2. [-1] : Only one file in the format of RGBRGB... triplates (Each of R, G, B
|
|
is a byte) is being written. This file size is 3 * Width * Height.
|
|
If stdout is used for output, this option is implicitly applied.
|
|
The default (if not '-1') is 3 files with the names OutFileName.R,
|
|
OutFileName.G, OutFileName.B, each of which is Width * Height bytes.
|
|
3. [-o OutFileName] : specifies the name of the out file (see also '-1'
|
|
above).
|
|
3. [-h] : print one command line help, similar to Usage above.
|
|
|
|
Notes:
|
|
------
|