home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / graphics / gif-util.zip / GIFHISTO.DOC < prev    next >
Text File  |  1989-08-01  |  1KB  |  42 lines

  1.             GifHisto
  2.             --------
  3.  
  4. Program to create histogram of number of pixels using each color. Output
  5. can be formated into a GIF histogram file, or text file - both goes to
  6. stdout.
  7.  
  8.  
  9. Usage:
  10. ------
  11.  
  12. Usage: GifHisto [-t] [-s Width Height] [-n ImageNumber] [-b] [-h] GifFile
  13.  
  14.   If no GifFile is given, GifHisto will try to read stdin for GIF file.
  15.  
  16. Memory required:
  17. ----------------
  18.  
  19. Line.
  20.  
  21.  
  22. Options:
  23. --------
  24.  
  25. 1. [-t] : Force output to be text file of the form: Size of colormap lines
  26.    each contains two integers: number of times color appeared, and color
  27.    index. This in increasing color index order. This output can be fed
  28.    directly to msdos SORT program if number of times color appears ordering
  29.    is desired.
  30.      The colrmap picked is the one to be used for the image to generate
  31.    histogram for, as defined in GIF format.
  32. 2. [-s Width Height] : Size of GIF histogram file. The Height of the
  33.    histogram should be power of 2 dividable by number of colors in colormap.
  34.      Width sets the resolution (accuracy if you like) of the histogram as
  35.    the maximum histogram bar is scaled to fit it.
  36. 3. [-n ImageNumber] : Image number to test. Default is one.
  37. 4. [-b] : Zeros the background color count. As only linear scale bars is
  38.    supported and usually the background appears much more times then rest
  39.    of colors, deleting back ground count will improve the scaling of other
  40.    colors.
  41. 5. [-h] : print one command line help, similar to Usage above.
  42.