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

  1.             Gif2Epsn
  2.             --------
  3.  
  4. Program to dump images saved as GIF files on Epson type printers.
  5.  
  6.  
  7. Usage:
  8. ------
  9.  
  10. Usage: Gif2Epsn [-d DitherSize] [-t BWThreshold] [-m Mapping] [-i] [-n]
  11.                         [-p PrinterName] [-h] GifFile
  12.  
  13. If no GifFile is given, Gif2Epsn will try to read stdin for GIF file.
  14.  
  15.  
  16. Memory required:
  17. ----------------
  18.  
  19. Screen.
  20.  
  21.  
  22. Options:
  23. --------
  24.  
  25. 1. [-d DitherSize] : Sets size of dithering matrix, where DitherSize can be
  26.    2,3 or 4 only (for 2x2, 3x3 and 4x4 dithering matrices). Default is 2.
  27.    Note image will be displayed in this mode only if Mapping (see -m)
  28.    selected this mode.
  29. 2. [-t BWThreshold] : Sets threshold level for B&W mapping in percent.
  30.    This threshold level is used in the different mappings as selected via -m.
  31.    Default is 19%.
  32. 3. [-m mapping] : Select method to map colors to B&W. Mapping can be:
  33.    0 : Every none background color is considered foreground (white color but
  34.        is drawn as black by printer, unless -i is specified).
  35.    1 : 0.3 * RED + 0.59 * GREEN + 0.11 * YELLOW > BWThreshold is considered
  36.        white color.
  37.    2 : Colors are mapped as in 1, and use dithering of size as defined using
  38.        -d option. BWthreshold is used here as scaler.
  39.    Default is option 0.
  40. 4. [-i] : Invert the image, i.e. black -> white, white -> black.
  41. 5. [-n] : Nicer image. Uses double density feature of Epson printer, to make
  42.       nicer result. This takes more time (and kill your ink cartridge
  43.       faster...) but results are usually better.
  44. 6. [-p PrinterName] : by default output is sent to LPT1:. If  other device
  45.       or disk file is required, they should be specified here. Note
  46.       devices are NOT specifed with colon, so to use LPT2: instead:
  47.       '-p lpt2' is required. Nothing is sent to stdout. If a disk file is
  48.       created: '-p file1.eps' then it can be printed any time by the
  49.       copy command: 'copy file1.eps prn:/b'. Note the /b for binary copy.
  50. 7. [-h] : print one command line help, similar to Usage above.
  51.  
  52. Notes:
  53. ------
  54.   The output has aspect ratio of 1, so square image, will be square in its
  55. hardcopy as well.
  56.   The widest image can be printed is 640 pixels, on 8 inches paper. You
  57. probably will need to flip wider images, if height is less than that:
  58. 'gifflip -r x29.gif | gif2epsn'. Wider images will be clipped.
  59.