chrome_print | R Documentation |
Print an HTML page to PDF or capture a PNG/JPEG screenshot through the Chrome DevTools Protocol. Google Chrome or Microsoft Edge (or Chromium on Linux) must be installed prior to using this function.
chrome_print(
input,
output = xfun::with_ext(input, format),
wait = 2,
browser = "google-chrome",
format = c("pdf", "png", "jpeg"),
options = list(),
selector = "body",
box_model = c("border", "content", "margin", "padding"),
scale = 1,
work_dir = tempfile(),
timeout = 30,
extra_args = c("--disable-gpu"),
verbose = 0,
async = FALSE,
outline = gs_available(),
encoding
)
input |
A URL or local file path to an HTML page, or a path to a local
file that can be rendered to HTML via |
output |
The output filename. For a local web page ‘foo/bar.html’, the default PDF output is ‘foo/bar.pdf’; for a remote URL ‘https://www.example.org/foo/bar.html’, the default output will be ‘bar.pdf’ under the current working directory. The same rules apply for screenshots. |
wait |
The number of seconds to wait for the page to load before printing (in certain cases, the page may not be immediately ready for printing, especially there are JavaScript applications on the page, so you may need to wait for a longer time). |
browser |
Path to Google Chrome, Microsoft Edge or Chromium. This
function will try to find it automatically via |
format |
The output format. |
options |
A list of page options. See
|
selector |
A CSS selector used when capturing a screenshot. |
box_model |
The CSS box model used when capturing a screenshot. |
scale |
The scale factor used for screenshot. |
work_dir |
Name of headless Chrome working directory. If the default temporary directory doesn't work, you may try to use a subdirectory of your home directory. |
timeout |
The number of seconds before canceling the document generation. Use a larger value if the document takes longer to build. |
extra_args |
Extra command-line arguments to be passed to Chrome. |
verbose |
Level of verbosity: |
async |
Execute |
outline |
If not |
encoding |
Not used. This argument is required by RStudio IDE. |
Path of the output file (invisibly). If async
is TRUE
,
this is a promise
value.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.