Usage
Cairo(width = 7, height = 7, pointsize = 12, surface = c("screen", "png", "pdf", "ps", "svg"), filename = NULL) Cairo_pdf(filename, width = 7, height = 7, pointsize = 12) Cairo_ps(filename, width = 7, height = 7, pointsize = 12) Cairo_svg(filename, width = 7, height = 7, pointsize = 12) Cairo_png(filename, width = 7, height = 7, pointsize = 12)
Arguments
width
The (initial) width in inches
height
The (initial) height in inches
pointsize
The pointsize of the font
surface
One of screen, pdf, ps, svg,
or png, indicating the cairo backend to use (the output format).
If missing, inferred from extension of the filename argument.
filename
The output filename (used only by file surfaces, not the screen).
If a file surface is specified but no filename is given, the filename defaults
to Rplots.SURFACE where SURFACE is the name of the current surface type.