powered by
Split a pdf file into individual pages
pdf_split(input, output = NULL, password = "")
a character vector with the paths of the split pdf files
path or url to the input pdf file
base path of the output file(s)
string with password to open pdf file
# extract some pages pdf_file <- system.file("examples", "sufganiyot.pdf", package = "cpp11qpdf") fout <- tempfile() pdf_split(pdf_file, fout, password = "")
Run the code above in your browser using DataLab