home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d5xx / d518 / post.lha / Post / post.doc < prev    next >
Text File  |  1991-07-21  |  26KB  |  715 lines

  1. Postscript interpreter - user documentation
  2. ===========================================
  3.  
  4. Post V1.6 Copyright Adrian Aylward 1989, 1991
  5.  
  6. Free use and non-commercial reproduction of the binaries of the interpreter
  7. library (post.library) is permitted, providing that the copyright notices
  8. are not removed.  Distribution by disk libraries is permitted provided only
  9. a nominal copying fee is charged.
  10.  
  11. You may freely copy, use and modify the user interface program (post).
  12.  
  13. For queries and bug reports write to the author:
  14.  
  15.         Adrian Aylward,
  16.         20 Maidstone Road,
  17.         SWINDON,
  18.         Wiltshire.
  19.         UK.
  20.  
  21. No responsibilities accepted for bugs, but please let me know so I can fix
  22. them.
  23.  
  24. Introduction
  25. ============
  26.  
  27. "Post" is a software based PostScript interpreter, presently running on the
  28. Amiga.  The source code is written in C, and should be fairly portable to
  29. other machines.  It supports the full Adobe language, with only minor
  30. variations.
  31.  
  32. Prerequisites
  33. =============
  34.  
  35. Post uses the Arp library (V39+), primarily for its file requestor.  For
  36. interactive working you also need ConMan (V1.3+).  Both these programs are
  37. widely available; any good BBS or PD/shareware library should have them.
  38. (ConMan is shareware.)  You may well have them installed on your machine
  39. already.
  40.  
  41. If you prefer not to install ConMan as your standard console handler, you
  42. will need to access it via an alternative device name, which you must
  43. specify by the CONDEV option.
  44.  
  45. You will need at least a megabyte of memory, more for high density printer
  46. output.
  47.  
  48. Command line interface
  49. ======================
  50.  
  51. usage:
  52.     post [files...] [IFF file] [SCREEN] [PRINTER] [INTERACTIVE]
  53.          [SIZE xyod..s..p.bc.] [MEM fhlv..] [CLOSEWB] [CONDEV con]
  54.  
  55. If you forget, type "post ?" to display this.
  56.  
  57. The input files
  58. ---------------
  59.  
  60. The interpreter reads the input files in turn.  When running interactively
  61. the input files are treated as startup files, and are rerun whenever the
  62. interpreter is restarted.  So you would normally specify just the standard
  63. startup file "init.ps", or an alternative of your own.  When running
  64. non-interactively you should in addition specify all the files you want to
  65. interpret, up to 5 in total; when the last is finished the interpreter will
  66. exit.
  67.  
  68. Printer output
  69. --------------
  70.  
  71. This is the default if neither the IFF nor SCREEN options are used, when
  72. running non-interactively.  The output is sent to the printer device as a
  73. graphic dump.
  74.  
  75. The interpreter will obtain default values for the page size, density, and
  76. number of colors from the current preferences.  If you use the default sizes
  77. make sure you have set the page size: run preferences and on the graphic 2
  78. screen set the width and height limits -  either bounded or absolute or in
  79. pixels.  The output defaults to black and white or 3 colour, according to
  80. the preferences.
  81.  
  82. IFF file output
  83. ---------------
  84.  
  85. This option will send the output to an IFF file.  Each IFF file contains a
  86. single FORM ILBM.  So that multiple pages may be created in a single run of
  87. the interpreter, sequence numbers are automatically generated:
  88.  
  89.     IFF path/fred*.pic   will generate  path/fred1.pic, path/fred2.pic ...
  90. and IFF path/fred??.pic  will generate  path/fred01.pic, path/fred02.pic ...
  91.  
  92. The default page size etc. is the same as for screen output.
  93.  
  94. SCREEN output
  95. -------------
  96.  
  97. This option  will send the output to a window on the interactive screen.  It
  98. implies interactive working.
  99.  
  100. You can generate screen, printer and IFF output at the same time.  But since
  101. screen output has to use chip memory and printer output at high resolution
  102. needs a large page buffer (about a megabyte for an A4 page at 300 dpi.) you
  103. will probably run out of memory if you attempt the two simultaneously.
  104.  
  105. The default screen size is the same as the workbench screen, but in
  106. interlace mode.  The default page size is A4, with a density of 75 pixels
  107. per inch.  The default number of colours is 3.  The page size is rounded up
  108. to the maximum size of the window.
  109.  
  110. The INTERACTIVE option
  111. ----------------------
  112.  
  113. This option causes the interpreter to run interactively.  A screen is opened
  114. and on it appears a requestor window for the parameters.  If you click on
  115. OK two windows will be opened, one for console input and output, and the
  116. other to display the page buffer.  Use the menus.
  117.  
  118. The SIZE option
  119. ---------------
  120.  
  121. The SIZE option sets the page size and density etc..
  122.  
  123.     SIZE "x..y..s..xo..yo..[x]d..[y]d..p.bc."
  124.  
  125. Up to 5 SIZE options are allowed; later values override earlier ones.
  126.  
  127. The page sizes ("x..y..s..") are in pixels, as decimal numbers; "s" sets
  128. the size of the bands, for band rendering to the printer.  The page offsets
  129. (xo..yo..) are in pixels, shifting the location of the bottom left of the
  130. bitmap relative to the PostScript logical page (origin at (0,0) in the
  131. initial user space). Densities ([x]d..[y]d..) are in pixels per inch; "xd"
  132. or "yd" set the x or y density, and "d" sets both.
  133.  
  134. The printer density can be set by "p"; its value should be in the range 
  135. 1 to 7.
  136.  
  137. The number of colours is: "b" for black and white (1 bit plane), "c" or "c3"
  138. for 3 colour rgb (3 bit planes), and "c4" for 4 colour cmyk (4 bit planes).
  139.  
  140. The MEM option
  141. --------------
  142.  
  143. The MEM option controls the amount of memory allocated for workspace.
  144.  
  145.     MEM "v..f..l..h.."
  146.  
  147. Up to 5 MEM options are allowed; later values override earlier ones.
  148.  
  149.     Default  Minimum
  150.     -------  -------
  151.      f60000     1000     Font cache
  152.      h20000     1000     Halftone cache
  153.      v50000     5000     Virtual machine memory segment size
  154.      l10000     1000     Line drawing workspace segment size
  155.  
  156. In addition memory is allocated for the page buffer (one bit per pixel)
  157. and for drawing and imaging buffers.
  158.  
  159. Since most of the workspace is allocated automatically you will not usually
  160. need to adjust these options.  If your program is so large that you do need
  161. to increase any of these values, be aware that it is unlikely that it will
  162. run on any standard PostScript printer.
  163.  
  164. The font cache is used to store character bitmaps; it saves recalculating
  165. them each time they are needed, so text rendering becomes many times faster.
  166. The default value is reasonable for average sized machines; if you are
  167. trying to shoehorn things into a small machine you could try reducing it. Or
  168. if you are printing a document using a large number of different characters,
  169. fonts, and sizes you may be able to imrove performance by increasing it.
  170.  
  171. The halftone cache holds halftone patterns used for simulating gray values.
  172. The default value will normally be satisfactory, but you might possibly need
  173. to increase it if you are using very large halftone patterns, for example
  174. for complex patterned fills.
  175.  
  176. The virtual machine memory is automatically allocated in segments as they
  177. are needed, up to a maximum of 63.  For most purposes you will not need
  178. to alter the segment size, but if you are running a gigantic program you
  179. might possibly need to increase it.
  180.  
  181. The line drawing workspace holds the current path, together with all the
  182. paths saved by a gsave operation.  It is automatically allocated in
  183. segments, up to a maximum of twenty.  The default size is sufficient for
  184. about 4000 path elements, enough for all normal programs.
  185.  
  186. The CLOSEWB option
  187. ------------------
  188.  
  189. If memory is tight, you can try using this option to close down WorkBench
  190. while Post is running.  This only works if there are no application
  191. windows open on the WorkBench screen.
  192.  
  193. The CONDEV option
  194. -----------------
  195.  
  196. If you do not have ConMan installed as the default console handler, you
  197. must use this option to specify its device name (without the ":").
  198.  
  199. Examples
  200. --------
  201.  
  202. To run postscript programs interactively, rendering to the screen:
  203.  
  204.     post init.ps screen
  205.  
  206. To print a file with many big characters using a large font cache and
  207. increasing the path limit:
  208.  
  209.     post init.ps myfile.ps printer mem f500000l200000
  210.  
  211. To render a series of 640 * 512 pictures at 762 dpi. to iff files t:i01,
  212. t:i02 etc.:
  213.  
  214.     post init.ps mypics.ps iff t:i?? size x640y512d72
  215.  
  216. The WorkBench interface
  217. =======================
  218.  
  219. Just click on the icon.  It always runs interactively.  You can set up
  220. default arguments by setting the ToolTypes; add a string "ARGS=...."
  221. and it will be parsed just like the CLI startup.  For example
  222. "ARGS=init.ps screen" will define the standard startup file and make the
  223. screen the default output.
  224.  
  225. The Menus
  226. =========
  227.  
  228. Project
  229.     Restart              Takes you back to the parameters requestor, after
  230.                          which the interpreter is reinitialised.
  231.  
  232.     Quit                 Quit from the program
  233.  
  234. File
  235.     Load font            Loads a file from the PSFonts: directory by default
  236.  
  237.     Load file            Loads a file, without saving or restoring the VM
  238.  
  239.     Run file             Runs a file, saving VM before and restoring after
  240.  
  241.     Interactive          Interprets interactive input
  242.  
  243. Control
  244.     Pause every page     Toggles pause every showpage/copypage
  245.  
  246.     Continue after pause Does just that
  247.  
  248.     Interrupt            Sends a break; equivalent to CTRL/C
  249.  
  250.     Kill                 Generates an interrupt that cannot be trapped
  251.  
  252. Before and after executing a file the operand stack is cleared.  This is
  253. to prevent invalidrestore errors, particularly if interpretation ended in
  254. error with values on the stack.  If you need to leave things on the stack
  255. you will have to run the files from a driver file, or from the interactive
  256. window.  At the end of the file, (after any restore), the page is erased.
  257.  
  258. If you use the automatic font loading, as defined in the standard startup
  259. file "init.ps", the font will be discarded when the VM is restored.  To
  260. avoid repeated reloading of common fonts it may be better to use the "Load
  261. font" menu item to preload the ones you want.  N.B. there is no check to
  262. stop you loading the same one twice; it will probably work but it will
  263. waste memory.
  264.  
  265. Compatability
  266. =============
  267.  
  268. The interpreter is based upon the language (version "23.0") as described by
  269. the (red) book:
  270.  
  271.     "PostScript Language Reference Manual"
  272.     Adobe Systems Incorporated,
  273.     Addison-Wesley 1985, ISBN 0-201-10174-2
  274.  
  275. The 4 colour operators are also supported as described by the document:
  276.  
  277.     "PostScript Language Color Extensions"
  278.     Adobe Systems Incorporated (23-Jan-90)
  279.  
  280. File handling
  281. -------------
  282.  
  283. The files %stdin, %stdout, %stderr are permanently open as far as the
  284. operating system is concerned.  Attempts to close them will invalidate the
  285. file object but not close them to the operating system.  If they are
  286. connected to a terminal they will be unbuffered, so output will be
  287. transmitted immediately, without waiting for a "flush".  The special files
  288. %statementedit and %lineedit are not supported.  There is no end of file
  289. control character.
  290.  
  291. Error handling
  292. --------------
  293.  
  294. All the standard Adobe error conditions are supported.  There also some
  295. additional errors:
  296.  
  297. The error "invalidstop" will be generated if a "stop" operator is executed
  298. not within any encolsing "stopped" context.
  299.  
  300. The error "memoryallocation" will be executed if the interpreter is unable
  301. to obtain sufficient memory from the operating system.
  302.  
  303. The error "kill" may be executed in response to an external command.  It
  304. bypasses the error handler in errordict, so that it is always possible to
  305. kill a postscript program, even on that traps its own errors.
  306.  
  307. The execution stack
  308. -------------------
  309.  
  310. The exact contents of the execution stack are not defined by the language
  311. reference manual, and cannot therefore be guaranteed to be the same as other
  312. implementations.  Dumping the stack is likely to yield useful debugging
  313. information but is not recommended for normal programming.
  314.  
  315. Colour mapping
  316. --------------
  317.  
  318. The interpreter can run with one bit plane (for black and white printers),
  319. 3 bit planes (red, green, blue) or 4 bit planes (cyan, magenta, yellow,
  320. black).  For screen output 3 bit planes are appropiate.  For a colour
  321. printer the 3 or 4 colour model can be used.  The output is always in
  322. binary; gray scale is supported only via the halftone mechanism.
  323.  
  324. For low resolution colour printers the 3 colour model is probably best.
  325. The 4 color model is for high resolution colour printers that can generate
  326. high frequency halftone screens, where a fourth screen is used to improve
  327. the quality of the blacks and grays.
  328.  
  329. (N.B. the preferences printer drivers only handle 3 colour model, so if
  330. you want to use the 4 colour model you will probably need to generate an
  331. IFF file and write your own print dump program.  They will however
  332. automatically use black the ribbon/ink if the printer has one)
  333.  
  334. The transformations between the RGB and the HSB models are based on those in
  335. the book:
  336.  
  337.     "Procedural Elements for Computer Graphics"
  338.     David F. Rogers,
  339.     McGraw-Hill 1985, ISBN 0-E07-053534-5.
  340.  
  341. Band Rendering
  342. --------------
  343.  
  344. For a high resolution printer the page buffer can be quite large (a megabyte
  345. or so).  If you don't have enough memory to hold the entire page at once you
  346. can render each one in several bands.  Set the "SIZE s..." option to the
  347. largest band size you have space for.  (For matrix printers it will probably
  348. be best to make it a multiple of the number of printer pins times the number
  349. of vertically displaced passes).  Then run the postscript program generating
  350. each page once for each band, using the "setband" operator, which is
  351. described below, to set the base for each band.  Start at a base of zero
  352. and increment the base by the band size until you reach the page height.
  353. Each band is sent to the printer as a separate graphic dump; the last band
  354. generates a form feed to eject the page.  You can use the "currentband"
  355. operator to calculate the number of bands needed:
  356.  
  357.     currentband 1 sub { setband pageproc } for 0 setband
  358.  
  359. will execute "pageproc" once for each band (remaining) on the page.  The
  360. procedure should execute copypage (or showpage) exactly once per iteration.
  361.  
  362. This technique is only suitable for printer output.  There is a special
  363. driver program "postband" that handles this automatically for programs
  364. that conform to the Adobe structuring conventions.
  365.  
  366. Fonts
  367. -----
  368.  
  369. There are no fonts built in to the interpreter; they must all be downloaded.
  370. The findfont operator will execute the error invalidfont if the font you
  371. request is not present in the font dictionary.  You can redefine it, perhaps
  372. to search the Unix/Amiga filing system to automatically download fonts or to
  373. substitute a default font.  See the standard startup file.
  374.  
  375. Both type 1 (Adobe encrypted format) and type 3 (standard PostScript as per
  376. the red book) fonts are now supported.  In addition the IBM font format can
  377. be read directly.
  378.  
  379. The font caching will work significantly better if all your fonts have
  380. UniqueID's.  Then repeated makes of the same font with the same matrix will
  381. be cached, and cached character bitmaps can be retained even if the font
  382. is removed by a restore operation.  N.B. if fonts are downloaded after a
  383. save they will be removed by the corresponding restore; in the interests of
  384. efficiency it may therefore be better to preload them.
  385.  
  386. Other features
  387. --------------
  388.  
  389. Names of the form //name are looked up immediately by the scanner, and
  390. packed arrays have been implemented.  These features were not on the
  391. original Adobe red book, but were added to the language specification later.
  392.  
  393. When scanning the contents of a string, if there any embedded strings the
  394. escape sequences are interpreted just as they are in a file.  This follows
  395. the specification of the more recent Adobe interpreters (including display
  396. PostScript) and not the original red book.
  397.  
  398. Operators omitted or changed
  399. ----------------------------
  400.  
  401.     banddevice
  402.  
  403. Not appropiate for the Unix/Amiga environment.
  404.  
  405.     bytesavailable
  406.  
  407. Since we can't tell how many bytes are available we always return -1.
  408.  
  409.     charpath
  410.  
  411. Meets the level 2 spec.  At the end of the string a moveto is appended to
  412. move to the correct origin for the next character.  (So the current point
  413. is advanded by the width of the string.)
  414.  
  415.     copypage
  416.  
  417. For printer output this works like the standard.  The number of pages
  418. printed is equal to #copies.  For screen output it does not need to do
  419. anything, as the screen is not buffered.  For IFF file output it writes the
  420. page to the next file.
  421.  
  422.     echo
  423.  
  424. Not appropiate for the Unix/Amiga environment.
  425.  
  426.     eexec
  427.  
  428. This is implemented as per the Adobe type 1 fonts book.  Its operand must be
  429. a file, which must match the object on top of the execution stack.  It can be
  430. terminated only by a closefile (which terminates the eexec but does not
  431. actually close the file).  So the sequences "currentfile eexec" and
  432. "currentfile closefile" as described in the book will work, but other
  433. combinations will likely fail.
  434.  
  435.     executive
  436.  
  437. There is no executive, as the interpreter supports interactive usage
  438. directly.
  439.  
  440.     findfont
  441.  
  442. Looks in the FontDirectory.  If it can't find the supplied key, it executes
  443. the error invalidfont.
  444.  
  445.     flushfile
  446.  
  447. We don't check for errors when flushing an input file, to prevent recursion
  448. in the error handler.
  449.  
  450.     framedevice
  451.  
  452. Not appropiate for the Unix/Amiga environment.
  453.  
  454.     pathbbox
  455.  
  456. Meets the level 2 spec.  If the path ends with a moveto that is not the only
  457. element then it is ignored when calculating the bounding box.  This means
  458. that the sequence "charpath pathbbox" will determine the bounds of the
  459. character(s), not including the empty space after the final character.  See
  460. also "charpath".
  461.  
  462.     prompt
  463.  
  464. Not called by the interpreter.  See "prompts" instead.
  465.  
  466.     renderbands
  467.  
  468. Not appropiate for the Unix/Amiga environment.
  469.  
  470.     resetfile
  471.  
  472. Does nothing.
  473.  
  474.     showpage
  475.  
  476. See the notes for copypage above.
  477.  
  478.     usertime
  479.  
  480. Returns the time elapsed since the interpreter started, with a resolution of
  481. one second.
  482.  
  483. Operators added
  484. ---------------
  485.  
  486.     currentband
  487.  
  488.         "currentband" base size height
  489.  
  490. Returns the base of the current band, size of each band, and total height
  491. of the page.
  492.  
  493.     setband
  494.  
  495.         base "setband"
  496.  
  497. Sets the base height of the band being rendered.  The value must be greater
  498. than or equal to zero and less than the total height of the page.
  499.  
  500.     fontfile
  501.  
  502.         (filename) "fontfile"
  503.  
  504. Opens a file for reading.  If the first byte is hex "80" the file is assumed
  505. to be in IBM font format, and its contents are converted to standard
  506. ascii/binary as they are read.  The standard input file (%stdin) is never in
  507. IBM font format.
  508.  
  509.     invalidstop
  510.  
  511.         (error)
  512.  
  513. A "stop" has been executed for which there is no dynamically enclosing
  514. "stopped" context.
  515.  
  516.     prompts
  517.  
  518.         string string "prompts"
  519.  
  520. The first string is used as the prompt when the interpreter is scanning
  521. terminal input and executing it immediately; the second string is used when
  522. execution is defered while scanning the contents of a procedure "{ ... }".
  523. No prompt is given when a newline is encountered within a string.
  524.  
  525.     vmhwm
  526.  
  527.         "vmhwm" hwmused maximum
  528.  
  529. Returns two integers: the high water mark of the amount virtual memory used
  530. since the program was first started or the last "vmhwm", and the maximum
  531. available amount of memory.
  532.  
  533.     callextfunc
  534.  
  535.         result arg1 arg2 ... argc func "callextfunc" result
  536.  
  537. Calls an external function using a C calling sequence.  This operator is not
  538. available for use by ordinary PostScript programs; it can only be used when
  539. the library is called with an external function table supplied as an argument
  540. (see the library interface documentation for details).  The "func" argument
  541. is the index of the function in the external call table, and "argc" is the
  542. number of parameters; both must be non-negative integers.  The result is
  543. the object in which the result will be placed.  If it a null then no result
  544. will be returned and the null object will be discarded; otherwise it must
  545. match the type of the result returned from the function.  For both result and
  546. parameters bool and integer types will work OK; real types will work if your
  547. C compiler passes them just like ints (use ANSI prototypes so it does not
  548. expand them to double).  For string parameters the address is passed.  Arrays
  549. may be passed as parameters, but they are only useful if you know their
  550. PostScript object representation.  The maximum number of parameters
  551. permitted is 20.
  552.  
  553. Miscellaneous
  554. -------------
  555.  
  556. The system dictionary is left writeable so that standard preludes can add
  557. things to it - possibly removing write permission when they have finished.
  558. Similarly FontDirectory is writeable, so that it is possible to add entries
  559. without using definefont.
  560.  
  561. Device space
  562. ------------
  563.  
  564. The largest device that the interpreter can handle is 30000 by 30000
  565. pixels.  In practice you will probably run out of memory long before
  566. reaching this limit.
  567.  
  568. Known Bugs
  569. ==========
  570.  
  571. If you close down WorkBench the menus sometimes get truncated and slightly
  572. corrupted.  I suspect this is a Workbench/Intuition problem.
  573.  
  574. If you type CTRL/C to abort if the printer is not ready then strange things
  575. may happen on subsequent attempts to print.
  576.  
  577. N.B. if you run very low on memory, Intuition may behave strangely, and
  578. refuse to resize windows etc..  This is not a bug in Post.
  579.  
  580. If you type CTRL/backslash in the interactive window you won't be able to
  581. run interactively again until a restart.
  582.  
  583. Post tries to keep the console window active, so that all keyboard input
  584. goes there.  It will probably be incompatible with mouse handlers that
  585. automatically activate the window under the cursor.
  586.  
  587. Versions
  588. ========
  589.  
  590.     V0.0  14-Nov-89 (prerelease)
  591.  
  592. The original.
  593.  
  594.     V0.1  06-Dec-89 (prerelease)
  595.  
  596. Image routines added.
  597.  
  598. Range checks eased on gray levels and colours etc..
  599.  
  600. Area filling speeded up, matrix manipulation and colour mapping rewritten,
  601. numeric conditioning improved for path fill.
  602.  
  603. Bugs fixed: syntax error, == string escapes, error handling and quit when
  604. recursing, vm error handling, integer overflow in path fill, matrix save,
  605. interrupt after printing page, dictionary second save, name table restore,
  606. boolean type checking, multiple halftone screens memory allocation.
  607.  
  608.     V0.2  07-Jan-90 (prerelease)
  609.  
  610. Font and character routines added.  Null device added.  Band rendering of
  611. printer output added.
  612.  
  613. Matrix manipulation rewritten again.  Interpreter recursion rewritten.
  614. Allocate stacks dynamically.
  615.  
  616. Bugs fixed: missing access checks on strings, scan token negative chars,
  617. depth check in path flattening, pathbbox, strings or null objects as
  618. dictionary keys, shade after grestore(all), fill/image with clip region,
  619. clip unclosed subpath, dictstack/execstack.
  620.  
  621.     V1.0  12-Feb-90
  622.  
  623. Support for big scrollable windows added.  Menu handler added with port
  624. name option.  Workbench startup added with parameters requestor window.
  625.  
  626. Hex string scan optimised.  Break now CTRL/C only, not CTRL/D.
  627.  
  628. Bugs fixed: aspect ratio in iff file, clipping pictures much wider than the
  629. page.
  630.  
  631.     V1.1  27-Mar-90
  632.  
  633. Interpreter made into shared library.  Message port interface removed.
  634. Band printing driver now included.
  635.  
  636. Immediate lookup of //name added.  Packed arrays added.  CR and CRLF now
  637. converted to LF for readline and when scaning tokens from a file.  Copypage
  638. now takes account of #copies. 
  639.  
  640. Bugs fixed: slow images where strings are not rectangles, attributes after
  641. copy and bind, charpath with fonts using gsave, iff run compression,
  642. setundercolorremoval now conforms to Adobe spec, make errorname literal,
  643. slow images repositioned by 1/2 pixel.
  644.  
  645.     V1.2  14-Oct-90
  646.  
  647. Allow multiple SIZE and MEM options.
  648.  
  649. Page offset option added, page size defaults to A4, integer gadgets checked
  650. for +ve values.
  651.  
  652. Type 1 fonts, IBM font format, encrypted files, eexec operator added.
  653.  
  654. Bugs fixed: location zero not zero, printer device signals, proc arrays not
  655. executable, bind packed arrays, restore closing files, makefont matrices not
  656. commutative, makefont with translation, error handling during recursion,
  657. graphics state within buildchar proc, miterlimit less that sqrt(2), cvs
  658. copying too many bytes, solid lines after dashes, floating point error trap
  659. recursion (2620 version on 68882), check for fpu present, charpath with null
  660. character path, error handling loading file, invalid restore check,
  661. writehexstring.
  662.  
  663.     V1.3  27-Oct-90
  664.  
  665. LaserJet driver added.
  666.  
  667. Interface fixes: Menus no longer ghost after startup file error and restart,
  668. pause status is now retained over a restart, printer preferences page size
  669. is now handled correctly, no longer crashes if arp.library is missing.
  670.  
  671. Bugs fixed: IBM binary eexec sections beginning with white space, funny
  672. characters in error message command names, hints with stems of negative
  673. width, font character cache sizing, tune baseline alignment and flex,
  674. eexec lines ending in CR (not CRLF), aload packed arrays, zero length
  675. charstrings, font character cache hash chains.
  676.  
  677.     V1.4  22-Jan-91
  678.  
  679. External function call interface added.  New flexible memory allocation for
  680. vm and paths; new error "memoryallocation".  More flexible font cache limit.
  681.  
  682. Interface fixes: Memory Fonts/Paths gadgets transposed, drag scroll bars
  683. under 2.0.
  684.  
  685. Bugs fixed: writehexstring, zero height clipped paths, $error in userdict,
  686. undocumented charstring codes, halftone cacheing, mixed type 1 and 3 fonts.
  687.  
  688.     V1.5  01-Mar-91
  689.  
  690. Type 1 font character rendering improved (though slower).
  691.  
  692. Fix printer page size selection (inches).  Printer output now truncates to
  693. maximum dump size, to prevent scaling.
  694.  
  695. Bugs fixed: path fill at top of clip path, free first vm segment, rotate
  696. scale and translate with matrix operands, cached characters within clip path,
  697. long clip paths, clippath not default clip path, hollow clip paths, setband.
  698.  
  699.     V1.6  19-Apr-91
  700.  
  701. Version defined as real number string in init.ps.  Define ISOLatin1 encoding
  702. vector.
  703.  
  704. New menu and error "kill".
  705.  
  706. New error name string library entry.
  707.  
  708. Pathbbox now meets level 2 spec.  Allow Encoding length less than 256.  Use
  709. .notdef for type 1 buildchar.  Increase $error dictionary size; move $error
  710. to systemdict.  Allow name operands to length operator.  New operator
  711. cleardictstack.  Change cvrs to correct spec.
  712.  
  713. Bugs fixed: fast image positioning when ydir negative.
  714.  
  715.