Rev 25156 | Blame | Last modification | View Log | Download | RSS feed
\name{Devices}\title{List of Graphical Devices}\usage{#ifdef unixX11(\dots)#endif#ifdef windowswindows(\dots)#endif%% FIXME:#ifdef aquaquartz(\dots)#endifpostscript(\dots)pdf(\dots)pictex(\dots)#ifdef unixpng(\dots)jpeg(\dots)GTK(\dots)GNOME(\dots)#endif#ifdef windowswin.metafile(\dots)win.print(\dots)png(\dots)jpeg(\dots)bmp(\dots)#endifxfig(\dots)bitmap(\dots)dev.interactive()}\alias{Devices}\alias{device}\alias{dev.interactive}\description{The following graphics devices are currently available:\itemize{\item \code{\link{postscript}} Writes PostScript graphics commands toa file\item \code{\link{pdf}} Write PDF graphics commands to a file\item \code{\link{pictex}} Writes LaTeX/PicTeX graphics commands to afile#ifdef windows\item \code{\link{windows}} The graphics driver for Windows (on screen,to printer and to Windows metafile).\item \code{\link{png}} PNG bitmap device\item \code{\link{jpeg}} JPEG bitmap device\item \code{\link{bmp}} BMP bitmap device#endif\item \code{\link{xfig}} Device for XFIG graphics file format\item \code{\link{bitmap}} bitmap pseudo-device via\code{GhostScript} (if available).}#ifdef unixThe following devices will be available if \R was compiled to use themand started with the appropriate \option{--gui} argument:\itemize{\item \code{\link{X11}} The graphics driver for the X11 Windowsystem\item \code{\link{png}} PNG bitmap device\item \code{\link{jpeg}} JPEG bitmap device\item \code{\link{GTK}}, \code{\link{GNOME}} Graphics drivers forthe GNOME GUI.%% <FIXME> quartz() also with corresponding --gui aqua ?#ifdef aqua%% ^^^^ not yet available\item \code{\link{quartz}} The graphics driver for the Mac OSXnative aqua system.#endif%% </FIXME>}None of these are available under \code{\link[base:BATCH]{R CMD BATCH}}.#endif}\value{\code{dev.interactive()} returns a logical, \code{TRUE} iff aninteractive (screen) device is in use.}\details{If no device is open, using a high-level graphics function will causea device to be opened. Which device is given by\code{\link{options}("device")} which is initially set as the mostappropriate for each platform: a screen device in interactive use and\code{\link{postscript}} otherwise.}\seealso{The individual help files for further information on any of thedevices listed here;\code{\link{dev.cur}}, \code{\link{dev.print}},\code{\link{graphics.off}}, \code{\link{image}},\code{\link{dev2bitmap}}.#ifdef unix\code{\link{capabilities}} to see if \code{\link{X11}}, \code{\link{jpeg}}and \code{\link{png}} are available.%% FIXME: aqua / quartz ?#endif}\examples{\dontrun{## open the default screen device on this platform if no device is## openif(dev.cur() == 1) get(getOption("device"))()}}\keyword{device}