home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / grafik / giflib11 / doc / rle2gif.doc < prev    next >
Encoding:
Text File  |  1990-02-23  |  900 b   |  35 lines

  1.             Rle2Gif
  2.             -------
  3.  
  4. Program to convert images saved as RLE (utah raster toolkit) to GIF format.
  5.  
  6.  
  7. Usage:
  8. ------
  9.  
  10. Usage: Rle2Gif [-c #Colors] [-h] RleFile
  11.  
  12. If no RleFile is given, Rle2Gif will try to read stdin for Rle file.
  13.  
  14.  
  15. Memory required:
  16. ----------------
  17.  
  18. Screen.
  19.  
  20.  
  21. Options:
  22. --------
  23.  
  24. 1. [-c #Colors] : Select size of color map in the output Gif file. #Colors
  25.    should be given as the based 2 log of number of colors. Default is 8
  26.    which is 256 colors, and which is also the maximum.
  27. 7. [-h] : print one command line help, similar to Usage above.
  28.  
  29. Notes:
  30. ------
  31.   As the RLE format allows full 24 bits per pixel (8 per primmery color)
  32. Colors must be quantized to the number of colors as set by the [-c] option,
  33. above. This process is quite slow. See the quantize.c file in the lib
  34. directory for the reference for this quantization algorithm (median cut).
  35.