You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
770 B

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/convert_pptx_to_pdf.R
\name{convert_pptx_to_pdf}
\alias{convert_pptx_to_pdf}
\title{Convert a PowerPoint Document to a PDF}
\usage{
convert_pptx_to_pdf(path, pdf_file = sub("[.]pptx", ".pdf", path))
}
\arguments{
\item{path}{path to the PowerPoint document}
\item{pdf_file}{output PDF file name. By default, creates . This functionality requires the use of
LibreOffice and the \code{soffice} binary it contains. See
\link{set_libreoffice_path} for more information. Note,}
}
\description{
Convert a PowerPoint Document to a PDF
}
\examples{
\dontrun{
path = system.file("examples/ex.pptx", package="docxtractr")
pdf <- convert_pptx_to_pdf(path, pdf_file = tempfile(fileext = ".pdf"))
}
}