home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / clipart / gs22.zip / README.DOC < prev    next >
Text File  |  1991-05-24  |  4KB  |  134 lines

  1.    Copyright (C) 1990, 1991 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.
  19.  
  20. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  21.  
  22. This file, readme.doc, describes problems and new features in the current
  23. release of Ghostscript.  This file describes version 2.2 of Ghostscript.
  24.  
  25. For an overview of Ghostscript and a list of the documentation files, see
  26. README.
  27.  
  28. New features
  29. ============
  30.  
  31. Note: this is not a complete list of new features.  See the most recent
  32. section of history.doc for full details.
  33.  
  34. The save and restore operators are implemented.
  35.  
  36. You can select the default (initial) device with the switch
  37.     -sDEVICE=<devicename>
  38.  
  39. The build procedure is now fully automatic -- you don't have to build
  40. *.dev by hand any more.
  41.  
  42. The default MS-DOS configuration now includes VGA (default), EGA, Epson,
  43. DeskJet, and LaserJet drivers.
  44.  
  45. There is a new makefile (tbcplus.mak) for use with Turbo C++ and Borland
  46. C++.  For Borland C++, you have the option of using code overlaying, which
  47. increases available space by over 100K.
  48.  
  49. The Epson driver now handles several different densities, including 24-pin
  50. support.
  51.  
  52. There is now a `supported' PaintJet driver.
  53.  
  54. Input (but not output) redirection is now supported, using `-' on the
  55. command line.
  56.  
  57. The -w and -h switches are replaced by a single -g (geometry) switch, with
  58. usage -g<width>x<height>.  The -h switch, and a new -? switch, print usage
  59. help.
  60.  
  61. Accented characters display properly.
  62.  
  63. Known problems
  64. ==============
  65.  
  66. Interpreter
  67. -----------
  68.  
  69. The interactive interpreter requires that every statement fit on a line,
  70. i.e., you can't have an unpaired ( or {.
  71.  
  72. On a MS-DOS system, interrupting Ghostscript by typing ^C doesn't restore
  73. the display mode.
  74.  
  75. Operators
  76. ---------
  77.  
  78. The Ghostscript language does not include the following operators of the
  79. PostScript language:
  80.  
  81.     resetfile
  82.     reversepath
  83.     banddevice, renderbands
  84.  
  85. The following are not implemented completely:
  86.  
  87.     %statementedit (file name): interpreted as equivalent to
  88. %lineedit.
  89.  
  90. Most of the new color operators, particularly those that support the CMYK
  91. color model, are implemented as Ghostscript language procedures, and they
  92. essentially emulate CMYK using RGB.
  93.  
  94. The following operators that expect arrays won't accept packed arrays:
  95.     definefont (Subrs (type 1 fonts))
  96.     setdash (dash pattern)
  97.     setcachedevice (bounding box)
  98.     makeimagedevice (palette)
  99.  
  100. Limitations
  101. -----------
  102.  
  103. Floating point exceptions terminate Ghostscript, rather than producing an
  104. rangecheck error.
  105.  
  106. Some access checks aren't implemented.
  107.  
  108. copypage does nothing in the MS-DOS implementation,
  109.   and merely synchronizes the X connection in the Unix implementation.
  110.   showpage is a procedure that does a copypage and then beeps the bell and
  111.   waits for the user to hit a key. (copypage does do the right thing for
  112.   printers.)
  113.  
  114. Graphics bugs
  115. -------------
  116.  
  117. The wrong thing happens at grestore if you add to an existing path
  118.   after a gsave.
  119.  
  120. The transfer function is used only for stroking, filling, and imagemask,
  121.   not for image or colorimage.
  122.  
  123. strokepath doesn't work for dashed lines.
  124.  
  125. clip and eoclip replace the clipping path with the current path,
  126.   rather than with the intersection of the two paths.
  127.  
  128. The implementation only looks at the PaintType of the font when doing
  129.   show, not when doing charpath.  Because of this, stroked fonts don't
  130.   work correctly with charpath.
  131.  
  132. The implementation doesn't look at the Metrics in the font; it always
  133.   uses the metrics supplied by the character.
  134.