home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / PRINTER / PCL_PACK.ZIP / README < prev   
Encoding:
Text File  |  1990-11-08  |  4.7 KB  |  130 lines

  1.  
  2. PCL_PACK
  3.  
  4. DIGITAL INSIGHT
  5. P.O. Box 2095, Evergreen CO 80439-2095
  6. 5 November 1990 
  7.  
  8.  
  9. SUMMARY
  10.  
  11. PCL_PACK compresses HP PCL-format graphics data into an encoded format
  12. that PCL (level III) compatible printers (including the HP LaserJet 
  13. and DeskJet) understand.  Depending on your printer, and the size and
  14. content of your file, this can dramatically speed up printing time (or
  15. at least the amount of time you wait for data to get sent to the
  16. printer).  If you save image files on disk, it reduces the disk space
  17. needed (and you don't need to unpack the files for printing).
  18.  
  19.  
  20. CONDITIONS
  21.  
  22. The source and executable code are provided, and may be distributed,
  23. under the following conditions:
  24.  
  25.     * PCL_PACK is free, although distribution fees up to $4 may be charged.
  26.  
  27.     * Distributions must include PCL_PACK.C, PCL_PACK.EXE, and this
  28.       entire README file.
  29.  
  30.     * No warranty or support is provided. Use at your own risk.
  31.  
  32.  
  33. THE CATCH
  34.  
  35. What's our ulterior motive? Simply to exchange this utility for a little
  36. advertising. DIGITAL INSIGHT produces a flow diagramming program called 
  37. ROBOCHART.
  38.  
  39.  
  40. ROBOCHART is an interactive graphics program designed to create and 
  41. edit flow diagrams. It is particularly geared toward Yourdon-style 
  42. Data Flow Diagrams, but can generate many other similar diagrams,
  43. such as state transition diagrams, system configurations, flow charts, 
  44. organization charts, etc. ROBOCHART is NOT a general-purpose drawing 
  45. tool, but for these types of diagrams it's much faster and easier to 
  46. work with.
  47.  
  48. ROBOCHART doesn't need complicated commands. You simply manipulate the 
  49. diagram directly on the screen. The program knows you are drawing a
  50. flow diagram, and keeps things perfectly connected and aligned as you
  51. make changes.
  52.  
  53. Some of the features are:
  54.  
  55.     * Objects can be drawn, moved, or resized with a single mouse command.
  56.     * Flows between objects can be drawn or moved just as easily.
  57.     * Flows are automatically redrawn when a connected object moves.
  58.     * Flows can be rerouted with intermediate vertices.
  59.     * Labels are entered by simply pointing at an object and typing.
  60.     * Labels are moved automatically when objects or flows move.
  61.     * An optional snap grid simplifies diagram alignment.
  62.     * Hierarchical diagrams are supported for logical zooming between
  63.         levels of detail. Automatic level numbering is
  64.         optional. Object consistency across levels is automatic.
  65.     * Diagrams can be saved to disk and reloaded for editing.
  66.         Multiple diagram pages can be stored in one file.
  67.     * Pick, Cut and Paste functions handle hierarchical diagram sections.
  68.     * Program defaults are user-configurable.
  69.  
  70. ROBOCHART runs on PC/XT/AT/PS2 and compatible machines with 256K free RAM.
  71. A Microsoft-compatible mouse is required. Hercules, CGA, EGA, VGA, and 
  72. super VGA displays are supported. Hardcopy output is provided for many 
  73. laser, dot matrix, and PostScript printers, and HPGL plotters. ROBOCHART 
  74. can export your diagram in several graphics file formats.
  75.  
  76. List price is $96 (add $2 for shipping and handling).
  77.  
  78. ROBOCHART is also available for SUN 3 and SUN 4 systems. It runs under
  79. SunView with SUNOS 4.0 or later, and provides PostScript, EPSF, and
  80. HPGL output formats. A demo version with full manual is available for $25 
  81. (refundable against purchase of licensed version). Full version licensed 
  82. for a single node is $345. Additional licenses (including manual) are
  83. $90 each. (Shipping and handling $3.)
  84.  
  85. For further information or ordering, contact
  86.  
  87.     Lynn Morrison, Marketing Director
  88.     Digital Insight, Dept. U1
  89.     P.O. Box 2095
  90.     Evergreen, CO 80439-2095
  91.     (303) 674-5232
  92.  
  93.  
  94. HOW TO USE PCL_PACK
  95.  
  96. Presumably, you have some program (such as a desktop publisher) that
  97. generates output for your PCL printer. Ask it to output to a file
  98. instead of directly to the printer. (If you've got enough space on a
  99. RAM disk, that would be perfect.) Suppose it generated the file
  100. "FOO.PRT". Now just enter the command
  101.  
  102.         PCL_PACK FOO.PRT PRN
  103.  
  104. to compress the graphics data and send it to the printer. (Use "COM1"
  105. or whatever instead of "PRN" if your printer isn't on the parallel port.)
  106. You should get the same results as if you'd used the DOS command
  107.  
  108.         COPY /B FOO.PRT PRN
  109.  
  110. except that the transfer should go much faster.
  111.  
  112. To compress a graphics file and leave it on disk (perhaps it's something
  113. you'll want to print several times), just specify an output disk file
  114. instead of PRN:
  115.  
  116.         PCL_PACK FOO.PRT FOO.P
  117.  
  118. Then you can use
  119.  
  120.         COPY /B FOO.P PRN
  121.  
  122. to output the compressed version to the printer.
  123.  
  124.  
  125. That's it. For those who like generalized syntax, the command is
  126.  
  127.         PCL_PACK <input_file> <output_file>
  128.  
  129. We hope it saves you some time and space!
  130.