Rev 50203 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/grDevices/man/windows/savePlot.Rd% Part of the R package, http://www.R-project.org% Copyright 2008-9 R Core Development 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 = paste("Rplot", type, sep="."),type = c("png", "jpeg", "tiff", "bmp"),device = dev.cur())}\arguments{\item{filename}{filename to save to.}\item{type}{file type: only \code{"png"} will be accepted for cairoversion 1.0.}\item{device}{the device to save from.}}\details{Only \code{X11} devices of types \code{"cairo"} and \code{"nbcairo"}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.At present the plot is saved after rendering onto the canvas (defaultopaque white), so for the default \code{bg = "transparent"} theeffective background 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.}\seealso{\code{\link{X11}}, \code{\link{dev.copy}}, \code{\link{dev.print}}}\keyword{utilities}