plan9fox/sys/src/cmd/postscript/postbgi
2011-05-04 09:14:37 +00:00
..
mkfile Import sources from 2011-03-30 iso image - lib 2011-03-30 19:35:09 +03:00
postbgi.1.man more manpages 2011-05-04 09:14:37 +00:00
postbgi.c Import sources from 2011-03-30 iso image - lib 2011-03-30 19:35:09 +03:00
postbgi.h Import sources from 2011-03-30 iso image - lib 2011-03-30 19:35:09 +03:00
postbgi.mk Import sources from 2011-03-30 iso image - lib 2011-03-30 19:35:09 +03:00
postbgi.ps Import sources from 2011-03-30 iso image - lib 2011-03-30 19:35:09 +03:00
README Import sources from 2011-03-30 iso image - lib 2011-03-30 19:35:09 +03:00

BGI (Basic Graphical Instructions) to PostScript translator. Probably
not useful outside the Computer Centers. Added code to tie lines to
device space coordinates. Helps eliminate variations in line widths
noticeable when users selected a non-zero linewidth with the -w option.

Much that was omitted from early versions of the program has been
implemented. What's in place will handle most STARE (black and white)
and PRISM (color) BGI jobs. PRISM jobs often fill regions with color,
and need require device specific tuning to get things just right. An
easy solution is add "-P/prism true def" option to the postbgi command
line when you translate PRISM jobs.

A typical command line for STARE jobs would be,

	postbgi file >file.ps

while for PRISM jobs use,

	postbgi -P"/prism true def" file >file.ps