1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/pdfconvert.R
\name{pdfconvert}
\alias{pdfconvert}
\title{Convert pdf to raster format}
\usage{
pdfconvert(
files,
dpi = 300,
resolution = 1024,
gs,
gsopt,
resize,
format = "png",
...
)
}
\arguments{
\item{files}{Vector of (pdf-)filenames to process}
\item{dpi}{DPI}
\item{resolution}{Resolution of raster image file}
\item{gs}{Optional ghostscript command}
\item{gsopt}{Optional ghostscript arguments}
\item{resize}{Optional resize arguments (mogrify)}
\item{format}{Raster format (e.g. png, jpg, tif, ...)}
\item{\dots}{Additional arguments}
}
\description{
Convert PDF file to print quality png (default 300 dpi)
}
\details{
Access to ghostscript program 'gs' is needed
}
\seealso{
\code{dev.copy2pdf}, \code{printdev}
}
\author{
Klaus K. Holst
}
\keyword{iplot}
|