home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / gs403osk.tgz / gs403osk.tar / current.txt < prev    next >
Text File  |  1996-09-22  |  5KB  |  152 lines

  1.    Copyright (C) 1990, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17.  
  18. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  19.  
  20. This file, current.txt, describes problems and new features in the current
  21. release of Ghostscript.  This file describes version 4.02 of Ghostscript.
  22.  
  23. For an overview of Ghostscript and a list of the documentation files, see
  24. README.
  25.  
  26. New features (since release 3.53)
  27. ============
  28.  
  29. This is not a complete list of new features: see NEWS for details.
  30.  
  31. New scripts and utilities:
  32.     pdf2ps input.pdf output.ps
  33.         Converts PDF to PostScript, similar to Adobe's Acrobat
  34.         Exchange.
  35.     ps2pdf input.ps output.pdf
  36.         Converts PostScript to PDF, similar to Adobe's Acrobat
  37.         Distiller.  (It doesn't do a very good job just yet.)
  38.  
  39. setpagedevice is (finally) implemented.
  40.  
  41. AccurateScreens is now implemented.
  42.  
  43. The poor-quality free fonts have been replaced by good ones.
  44.  
  45. Anti-aliased text and graphics are available for PBM output and for display
  46. output on MS Windows.
  47.  
  48. PostScript Type 42 (embedded TrueType) fonts are fully supported (but the
  49. output quality is not very good, because the current TrueType rasterizer
  50. ignores hints).  Real TrueType fonts (.TTF) are also supported if
  51. Ghostscript is compiled with the ttfont feature included (which is the
  52. default on MS Windows platforms).
  53.  
  54. The driver interface has been expanded so that drivers can capture graphical
  55. "objects" at a high level rather than as rasters.  See drivers.txt and
  56. gxdevice.h for details.
  57.  
  58. Changes
  59. =======
  60.  
  61. Usage
  62. -----
  63.  
  64. Fontmap and [GS_]FONTPATH now work differently, and more sensibly.  See NEWS
  65. for details.
  66.  
  67. Building
  68. --------
  69.  
  70. Building gs386 with the Watcom compiler now requires using the wmakebat
  71. script rather than simply calling wmake[l].
  72.  
  73. Internal
  74. --------
  75.  
  76. The MS Windows implementation is now fully DLL-based.
  77.  
  78. Known problems
  79. ==============
  80.  
  81. Usage
  82. -----
  83.  
  84. On a MS-DOS system, interrupting the interpreter by typing ^C doesn't
  85. restore the display mode.
  86.  
  87. Limitations
  88. -----------
  89.  
  90. serialnumber returns the same value in all copies.
  91.  
  92. User names (a Display PostScript facility) are not implemented.
  93.  
  94. Some floating point exceptions terminate the interpreter, rather than
  95. producing a limitcheck error.
  96.  
  97. The DCTEncode filter disregards the Blend parameter, and uses different
  98. QuantTables and HuffTables from Adobe's.
  99.  
  100. The DCT filters do not support nonintegral sample ratios, and do not allow
  101. Sum(HS*VS)>10, regardless of the value of the Relax parameter.
  102.  
  103. The size of the execution stack cannot be changed dynamically.  (However,
  104. the sizes of the operand and dictionary stacks can be changed.)
  105.  
  106. Separation color spaces are implemented, but devices that actually produce
  107. color separations are not supported.  The special color separations All and
  108. None, and the primary separations (Red, Green, etc.), are not supported.
  109.  
  110. execform and ucache are implemented, but they do not actually do any
  111. caching; setucacheparams and ucachestatus are dummies.  (This only impacts
  112. performance, not functionality.)
  113.  
  114. The image operator only honors the Interpolate flag in the image
  115. dictionary if the combined transformation (ImageMatrix + CTM) doesn't
  116. involve rotation, skewing, or X-reflection.
  117.  
  118. Any path building operation (moveto, lineto, curveto) that would generate a
  119. device coordinate larger than +/-2^19 will cause a limitcheck.
  120.  
  121. Graphics bugs
  122. -------------
  123.  
  124. The implementation only looks at the PaintType of the font when doing
  125. show, not when doing charpath.  Because of this, stroked fonts don't work
  126. correctly with charpath.
  127.  
  128. arcto gives an error for negative radii.
  129.  
  130. Opening more than one window device at the same time doesn't work.
  131. This is the case for both X Windows and Microsoft Windows.
  132.  
  133. cshow doesn't work with composite fonts.
  134.  
  135. Non-graphics bugs
  136. -----------------
  137.  
  138. The %statementedit pseudo-file is equivalent to %lineedit.  As a
  139. consequence, the interactive interpreter requires that every statement fit
  140. on a line, i.e., you can't have an unpaired (, {, or <.
  141.  
  142. The following operators that expect arrays won't accept packed arrays:
  143.     definefont (Subrs (type 1 fonts))
  144.  
  145. Syntax errors occurring within a binary token do not produce the error
  146. message specified by the Adobe documentation.
  147.  
  148. restore doesn't restore the user parameters.
  149.  
  150. 1 vmreclaim is equivalent to 2 vmreclaim -- there is no separate GC for
  151. local VM.
  152.