home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / PSCRIPT / GS23A.ZIP / README.DOC < prev    next >
Encoding:
Text File  |  1991-08-22  |  3.6 KB  |  110 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.3 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 Epson driver now works on a wider variety of "Epson-compatible"
  35. printers.
  36.  
  37. The PaintJet driver now works properly.
  38.  
  39. Known problems
  40. ==============
  41.  
  42. Interpreter
  43. -----------
  44.  
  45. The interactive interpreter requires that every statement fit on a line,
  46. i.e., you can't have an unpaired ( or {.
  47.  
  48. On a MS-DOS system, interrupting Ghostscript by typing ^C doesn't restore
  49. the display mode.
  50.  
  51. Operators
  52. ---------
  53.  
  54. The Ghostscript language does not include the following operators of the
  55. PostScript language:
  56.  
  57.     resetfile
  58.     reversepath
  59.     banddevice, renderbands
  60.  
  61. The following are not implemented completely:
  62.  
  63.     %statementedit (file name): interpreted as equivalent to
  64. %lineedit.
  65.  
  66. Most of the new color operators, particularly those that support the CMYK
  67. color model, are implemented as Ghostscript language procedures, and they
  68. essentially emulate CMYK using RGB.
  69.  
  70. The following operators that expect arrays won't accept packed arrays:
  71.     definefont (Subrs (type 1 fonts))
  72.     setdash (dash pattern)
  73.     setcachedevice (bounding box)
  74.     makeimagedevice (palette)
  75.  
  76. Limitations
  77. -----------
  78.  
  79. Floating point exceptions terminate Ghostscript, rather than producing an
  80. rangecheck error.
  81.  
  82. Some access checks aren't implemented.
  83.  
  84. copypage does nothing in the MS-DOS implementation,
  85.   and merely synchronizes the X connection in the Unix implementation.
  86.   showpage is a procedure that does a copypage and then beeps the bell and
  87.   waits for the user to hit a key. (copypage does do the right thing for
  88.   printers.)
  89.  
  90. Graphics bugs
  91. -------------
  92.  
  93. The wrong thing happens at grestore if you add to an existing path
  94.   after a gsave.
  95.  
  96. The transfer function is used only for stroking, filling, and imagemask,
  97.   not for image or colorimage.
  98.  
  99. strokepath doesn't work for dashed lines.
  100.  
  101. clip and eoclip replace the clipping path with the current path,
  102.   rather than with the intersection of the two paths.
  103.  
  104. The implementation only looks at the PaintType of the font when doing
  105.   show, not when doing charpath.  Because of this, stroked fonts don't
  106.   work correctly with charpath.
  107.  
  108. The implementation doesn't look at the Metrics in the font; it always
  109.   uses the metrics supplied by the character.
  110.