Rev 76034 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/grDevices/man/windows/savePlot.Rd% Part of the R package, https://www.R-project.org% Copyright 2008-2019 R Core Team% Distributed under GPL 2 or later\name{savePlot}\alias{savePlot}\title{Save Cairo X11 Plot to File}\description{Save the current page of a cairo \code{\link{X11}()} device to a file.}\usage{savePlot(filename = paste0("Rplot.", type),type = c("png", "jpeg", "tiff", "bmp"),device = dev.cur())}\arguments{\item{filename}{filename to save to.}\item{type}{file type.}\item{device}{the device to save from.}}\details{Only cairo-based \code{X11} devices are supported.This works by copying the image surface to a file. For PNGwill always be a 24-bit per pixel PNG \sQuote{DirectClass} file, forJPEG the quality is 75\% and for TIFF there is no compression.For devices with buffering this copies the buffer's image surface, soworks even if \code{\link{dev.hold}} has been called.The plot is saved after rendering onto the canvas (default opaquewhite), so for the default \code{bg = "transparent"} the effectivebackground colour is the canvas colour.}\value{Invisible \code{NULL}.}\note{There is a similar function of the same name but more types for\code{windows} devices on Windows: that has an additional argument\code{restoreConsole} which is only supported on Windows.}\seealso{\code{\link{recordPlot}()} which is device independent. Further,\code{\link{X11}}, \code{\link{dev.copy}}, \code{\link{dev.print}}}\keyword{utilities}