Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions R/qpdf.R
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
#' Split, Combine and Compress PDF Files
#'
#' Content-preserving transformations transformations of PDF files. Note qpdf does
#' not read actual content from PDF files: to extract text and data you need the
#' pdftools package.
#' Content-preserving transformations of PDF files. Note that qpdf does not
#' read actual content from PDF files: to extract text and data you need the
#' [pdftools](https://docs.ropensci.org/pdftools/) package.
#'
#' Currently the package provides the following wrappers:
#' Currently this package provides the following wrappers:
#'
#' - [pdf_length]: show the number of pages in a pdf
#' - [pdf_split]: split a single pdf into separate files, one for each page
#' - [pdf_subset]: create a new pdf with a subset of the input pages
#' - [pdf_combine]: join several pdf files into one
#' - [pdf_compress]: compress or linearize a pdf file
#'
#' These functions to not modify the `input` file: they create new output file(s)
#' and return the path(s) to these newly created files.
#' These functions do not modify the `input` file: instead they create
#' new output file(s) and return the path(s) to these newly created files.
#'
#' @export
#' @name qpdf
Expand Down