home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / laser / postprn.arc / POSTPRN.DOC < prev    next >
Text File  |  1989-06-13  |  3KB  |  64 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.           Postprn, a PostScript device driver for MS-DOS.
  8.           
  9.           People who are using a PostScript Laser Printer with MS-DOS
  10.           don't have the ability to print ASCII files without a whole lot
  11.           of rigamarole.  Postprn gives you that ability.  It accepts ASCII
  12.           characters and outputs a PostScript program to the printer.
  13.           
  14.           Rather than require the user to run a separate program, Postprn
  15.           is implemented as a MS-DOS device driver.  Actually, Postprn
  16.           creates several new device drivers, one for each desired
  17.           orientation.  Postprn will print in portrait mode (80 columns, 66
  18.           lines) or landscape mode (66 lines, 132 columns), and either
  19.           one-up, two-up, or four-up.  Two-up prints two pages per piece
  20.           of paper, and four-up prints four pages per piece of paper.  The
  21.           names of the device drivers appear below.
  22.           
  23.                   
  24.                   PRNPORT   - Portrait mode, one-up.
  25.                   PRNPORT2  - Portrait mode, two-up.
  26.                   PRNPORT4  - Portrait mode, four-up.
  27.                   PRNLAND   - Landscape mode, one-up.
  28.                   PRNLAND2  - Landscape mode, two-up.
  29.                   PRNLAND4  - Landscape mode, four-up.
  30.           
  31.           
  32.           Postprn is installed according to the directions in your DOS
  33.           manual, just like any other device driver.  After you reboot, you
  34.           will be able to print to your postscript printer simply by
  35.           redirecting output to one of the six devices named above.  For
  36.           example, "dir >prnport4" will give you a directory listing with
  37.           four pages per piece of paper.
  38.           
  39.           This is version 0.9 of Postprn because the PostScript code is
  40.           fairly crufty.  However, it *does* work, so I am releasing this
  41.           code until some better PostScript code turns up on my doorstep.
  42.           Any volunteers?
  43.           
  44.           Making Postprn from source
  45.           
  46.           Rather than include the actual include files needed by
  47.           postprn.asm, I decided to include the original PostScript, and
  48.           the awk script that creates the include files.  If you don't have
  49.           access to an implementation of awk, you can get a copy of Rob
  50.           Duff's freely copyable awk, currently awk212.arc.  You can FTP it
  51.           from grape.ecs.clarkson.edu, or call Rob Duff's BBS [FidoNet
  52.           1:153/713 BBS:  (604)251-1816] directly and download it from
  53.           there.
  54.           
  55.           The PostScript code was written by Joe Larson
  56.           (joe@dayton.dhdsc.mn.org).  The MS-DOS device driver was written
  57.           by Russell Nelson, Clarkson University
  58.           (nelson@clutx.clarkson.edu).
  59.           
  60.           There is no copyright on this program.
  61.           
  62.  
  63.  
  64.