postscript {grDevices} | R Documentation |
PostScript Graphics
Description
postscript
starts the graphics device driver for producing
PostScript graphics.
Usage
postscript(file = if(onefile) "Rplots.ps" else "Rplot%03d.ps",
onefile, family, title, fonts, encoding, bg, fg,
width, height, horizontal, pointsize,
paper, pagecentre, print.it, command,
colormodel, useKerning, fillOddEven)
Arguments
file |
a character string giving the file path. If it is
For use with Tilde expansion (see See also section ‘File specifications’ in the help
for |
onefile |
logical: if true (the default) allow multiple figures
in one file. If false, generate a file name containing the page
number for each page and use an EPSF header and no
|
family |
the initial font family to be used, see the section
‘Families’ in |
title |
title string to embed as the |
fonts |
a character vector specifying additional R graphics font
family names for font families whose declarations will be included
in the PostScript file and are available for use with the device.
See ‘Families’ below. Defaults to |
encoding |
the name of an encoding file. See
|
bg |
the initial background color to be used. If
|
fg |
the initial foreground color to be used. Defaults to
|
width , height |
the width and height of the graphics region in
inches. Default to If |
horizontal |
the orientation of the printed image, a logical. Defaults to true, that is landscape orientation on paper sizes with width less than height. |
pointsize |
the default point size to be used. Strictly
speaking, in bp, that is 1/72 of an inch, but approximately in
points. Defaults to |
paper |
the size of paper in the printer. The choices are
|
pagecentre |
logical: should the device region be centred on the page? Defaults to true. |
print.it |
logical: should the file be printed when the device is
closed? (This only applies if |
command |
the command to be used for ‘printing’. Defaults
to |
colormodel |
a character string describing the color model:
currently allowed values as |
useKerning |
logical. Should kerning corrections be included in
setting text and calculating string widths? Defaults to |
fillOddEven |
logical controlling the polygon fill mode: see
|
Details
All arguments except file
default to values given by
ps.options()
. The ultimate defaults are quoted in the
arguments section.
postscript
opens the file file
and the PostScript
commands needed to plot any graphics requested are written to that
file. This file can then be printed on a suitable device to obtain
hard copy.
The file
argument is interpreted as a C integer format as used
by sprintf
, with integer argument the page number.
The default gives files ‘Rplot001.ps’, ..., ‘Rplot999.ps’,
‘Rplot1000.ps’, ....
The postscript produced for a single R plot is EPS (Encapsulated
PostScript) compatible, and can be included into other documents,
e.g., into LaTeX, using ‘\includegraphics{<filename>}’. For use
in this way you will probably want to use setEPS()
to
set the defaults as horizontal = FALSE, onefile = FALSE, paper =
"special"
. Note that the bounding box is for the device
region: if you find the white space around the plot region excessive,
reduce the margins of the figure region via par(mar = )
.
Most of the PostScript prologue used is taken from the R character
vector .ps.prolog
. This is marked in the output, and can be
changed by changing that vector. (This is only advisable for
PostScript experts: the standard version is in
namespace:grDevices
.)
A PostScript device has a default family, which can be set by the user
via family
. If other font families are to be used when drawing
to the PostScript device, these must be declared when the device is
created via fonts
; the font family names for this argument are
R graphics font family names (see the documentation for
postscriptFonts
).
Line widths as controlled by par(lwd = )
are in multiples of
1/96 inch: multiples less than 1 are allowed. pch = "."
with
cex = 1
corresponds to a square of side 1/72 inch, which is
also the ‘pixel’ size assumed for graphics parameters such as
"cra"
.
When the background colour is fully transparent (as is the initial default value), the PostScript produced does not paint the background. Almost all PostScript viewers will use a white canvas so the visual effect is if the background were white. This will not be the case when printing onto coloured paper, though.
TeX fonts
TeX has traditionally made use of fonts such as Computer Modern which
are encoded rather differently, in a 7-bit encoding. This encoding
can be specified by encoding = "TeXtext.enc"
, taking care that
the ASCII characters < > \ _ { }
are not available in those
fonts.
There are supplied families "ComputerModern"
and
"ComputerModernItalic"
which use this encoding, and which are
only supported for postscript
(and not pdf
). They are
intended to use with the Type 1 versions of the TeX CM fonts. It will
normally be possible to include such output in TeX or LaTeX provided
it is processed with dvips -Ppfb -j0
or the equivalent on your
system. (-j0
turns off font subsetting.) When family =
"ComputerModern"
is used, the italic/bold-italic fonts used are
slanted fonts (cmsl10
and cmbxsl10
). To use text italic
fonts instead, set family = "ComputerModernItalic"
.
These families use the TeX math italic and symbol fonts for a comprehensive but incomplete coverage of the glyphs covered by the Adobe symbol font in other families. This is achieved by special-casing the postscript code generated from the supplied ‘CM_symbol_10.afm’.
Color models
The default color model ("srgb"
) is sRGB.
The alternative "srgb+gray"
uses sRGB for colors, but with pure
gray colors (including black and white) expressed as greyscales (which
results in smaller files and can be advantageous with some printer
drivers). Conversely, its files can be rendered much slower on some
viewers, and there can be a noticeable discontinuity in color
gradients involving gray or white.
Other possibilities are "gray"
(or "grey"
) which used
only greyscales (and converts other colours to a luminance), and
"cmyk"
. The simplest possible conversion from sRGB to CMYK is
used
(https://en.wikipedia.org/wiki/CMYK_color_model#Mapping_RGB_to_CMYK),
and raster images are output in RGB.
Color models provided for backwards compatibility are "rgb"
(which is RGB+gray) and "rgb-nogray"
which use uncalibrated RGB
(as used in R prior to 2.13.0). These result in slightly smaller
files which may render faster, but do rely on the viewer being
properly calibrated.
Printing
A postscript plot can be printed via postscript
in two ways.
Setting
print.it = TRUE
causes the command given in argumentcommand
to be called with argument"file"
when the device is closed. Note that the plot file is not deleted unlesscommand
arranges to delete it.-
file = ""
orfile = "|cmd"
can be used to print using a pipe. Failure to open the command will probably be reported to the terminal but not to R, in which case close the device bydev.off
immediately.
On Windows the default
"printcmd"
is empty and will give an error if
print.it = TRUE
is used. Suitable commands to spool a PostScript
file to a printer can be found in ‘RedMon’ suite available from
http://pages.cs.wisc.edu/~ghost/index.html. The command will be
run in a minimized window. GSView 4.x provides ‘gsprint.exe’
which may be more convenient (it requires Ghostscript version 6.50
or later).
Conventions
This section describes the implementation of the conventions for graphics devices set out in the ‘R Internals’ manual.
The default device size is 7 inches square.
Font sizes are in big points.
The default font family is Helvetica.
Line widths are as a multiple of 1/96 inch, with a minimum of 0.01 enforced.
Circle of any radius are allowed.
Colours are by default specified as sRGB.
At very small line widths, the line type may be forced to solid.
Raster images are currently limited to opaque colours.
Note
If you see problems with postscript output, do remember that the problem is much more likely to be in your viewer than in R. Try another viewer if possible. Symptoms for which the viewer has been at fault are apparent grids on image plots (turn off graphics anti-aliasing in your viewer if you can) and missing or incorrect glyphs in text (viewers silently doing font substitution).
Unfortunately the default viewers on most Linux and macOS systems have these problems, and no obvious way to turn off graphics anti-aliasing.
Author(s)
Support for Computer Modern fonts is based on a contribution by Brian D'Urso durso@hussle.harvard.edu.
References
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
See Also
postscriptFonts
,
Devices
,
and check.options
which is called from both
ps.options
and postscript
.
cairo_ps
for another device that can produce PostScript.
More details of font families and encodings and especially handling text in a non-Latin-1 encoding and embedding fonts can be found in
Paul Murrell and Brian Ripley (2006). “Non-standard fonts in PostScript and PDF graphics.” R News, 6(2), 41–47. https://www.r-project.org/doc/Rnews/Rnews_2006-2.pdf.
Examples
require(graphics)
## Not run:
# open the file "foo.ps" for graphics output
postscript("foo.ps")
# produce the desired graph(s)
dev.off() # turn off the postscript device
## On Unix-alikes only:
postscript("|lp -dlw")
# produce the desired graph(s)
dev.off() # plot will appear on printer
## On Windows:
options(printcmd = 'redpr -P"\\printhost\lw"')
postscript(file = tempfile("Rps."), print.it = TRUE)
# produce the desired graph(s)
dev.off() # send plot file to the printer
## alternative using GSView 4.x :
options(printcmd = '/GhostGum/gsview/gsprint -query')
# for URW PostScript devices
postscript("foo.ps", family = "NimbusSan")
## for inclusion in Computer Modern TeX documents, perhaps
postscript("cm_test.eps", width = 4.0, height = 3.0,
horizontal = FALSE, onefile = FALSE, paper = "special",
family = "ComputerModern", encoding = "TeXtext.enc")
## The resultant postscript file can be used by dvips -Ppfb -j0.
## To test out encodings, you can use
TestChars <- function(encoding = "ISOLatin1", family = "URWHelvetica")
{
postscript(encoding = encoding, family = family)
par(pty = "s")
plot(c(-1,16), c(-1,16), type = "n", xlab = "", ylab = "",
xaxs = "i", yaxs = "i")
title(paste("Centred chars in encoding", encoding))
grid(17, 17, lty = 1)
for(i in c(32:255)) {
x <- i %% 16
y <- i %/% 16
points(x, y, pch = i)
}
dev.off()
}
## there will be many warnings. We use URW to get a complete enough
## set of font metrics.
TestChars()
TestChars("ISOLatin2")
TestChars("WinAnsi")
## End(Not run)