View source: R/get_page_dims.R
get_page_dims | R Documentation |
Get Page Length and Dimensions
get_page_dims(file, doc, pages = NULL, password = NULL, copy = FALSE)
get_n_pages(file, doc, password = NULL, copy = FALSE)
file |
A character string specifying the path or URL to a PDF file. |
doc |
Optionally,, in lieu of |
pages |
An optional integer vector specifying pages to extract from. |
password |
Optionally, a character string containing a user password to access a secured PDF. |
copy |
Specifies whether the original local file(s) should be copied to
|
get_n_pages
returns the page length of a PDF document. get_page_dims
extracts the dimensions of specified pages in a PDF document. This can be useful for figuring out how to specify the area
argument in extract_tables
For get_n_pages
, an integer. For get_page_dims
, a list of two-element numeric vectors specifying the width and height of each page, respectively.
Thomas J. Leeper <thosjleeper@gmail.com>
extract_tables
, extract_text
, make_thumbnails
# simple demo file
f <- system.file("examples", "mtcars.pdf", package = "tabulapdf")
get_n_pages(file = f)
get_page_dims(f)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.