#' Convert pdf to jpg
#'
#' @description Calls the console "convert" function to convert a pdf-file into a jpeg-image. Requires "convert" to be installed already.
#'
#' @param pdf.filename filename of pdf input file
#' @param jpg.filename filename of jpeg output file
#' @param quality quality of jpeg compression from 1 (worst) to 100 (best)
#' @param background color of background
#' @param dim size in pixels of the jpeg-image
#' @param remove.pdf logical flag. If TRUE, the pdf file is deleted after the conversion.
#' @param verbose logical flag to turn on/off console statements.
#'
#' @return None
#'
#' @author Danail Obreschkow
#'
#' @export
pdf2jpg = function(pdf.filename, jpg.filename, quality=100, background='white', dim=c(1600,1200), remove.pdf=FALSE, verbose=TRUE) {
if (verbose) cat(sprintf('Converting pdf to jpg'))
if (quality!=round(quality) | quality<1 | quality>100) stop('Only integer values from 1 to 100 allowed for quality.')
command = sprintf('convert -density 1600x1600 -resize %dx%d -quality %d -flatten -background %s %s %s',
round(dim[1]),round(dim[2]),quality,background,pdf.filename,jpg.filename)
system(command)
if (remove.pdf) {
command = sprintf('rm %s',pdf.filename)
system(command)
}
if (verbose) cat(sprintf('. Done.\n'))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.