Tools to Work with the 'Splash' JavaScript Rendering Service in R
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.

119 lines
3.5 KiB

7 years ago
% Generated by roxygen2: do not edit by hand
5 years ago
% Please edit documentation in R/render-png.R
7 years ago
\name{render_png}
\alias{render_png}
\title{Return an image (in PNG format) of the javascript-rendered page.}
7 years ago
\usage{
render_png(
splash_obj = splash_local,
url,
base_url = NULL,
width,
height,
timeout = 30,
resource_timeout,
wait = 0,
render_all = TRUE,
proxy,
js,
js_src,
filters,
allowed_domains,
allowed_content_types,
forbidden_content_types,
viewport = "full",
images,
headers,
body,
http_method,
save_args,
load_args,
http2 = FALSE,
engine = c("webkit", "chromium")
)
7 years ago
}
\arguments{
\item{splash_obj}{Object created by a call to \code{\link[=splash]{splash()}}}
7 years ago
\item{url}{The URL to render (required)}
\item{base_url}{The base URL to render the page with.}
7 years ago
\item{width, height}{Resize the rendered image to the given width/height (in
pixels) keeping the aspect ratio. These are optional}
7 years ago
7 years ago
\item{timeout}{A timeout (in seconds) for the render (defaults to 30). Without
re-configuring the start-up parameters of the Splash server (not this package)
7 years ago
the maximum allowed value for the timeout is 60 seconds.}
7 years ago
\item{resource_timeout}{A timeout (in seconds) for individual network requests.}
\item{wait}{Time (in seconds) to wait for updates after page is loaded (defaults to 0).}
\item{render_all}{If \code{TRUE} extend the viewport to include the whole webpage
(possibly very tall) before rendering.}
7 years ago
\item{proxy}{Proxy profile name or proxy URL.}
7 years ago
7 years ago
\item{js}{Javascript profile name.}
7 years ago
7 years ago
\item{js_src}{JavaScript code to be executed in page context.}
7 years ago
7 years ago
\item{filters}{Comma-separated list of request filter names.}
7 years ago
7 years ago
\item{allowed_domains}{Comma-separated list of allowed domain names. If present, Splash
won’t load anything neither from domains not in this list nor from subdomains of
domains not in this list.}
7 years ago
7 years ago
\item{allowed_content_types}{Comma-separated list of allowed content types. If present,
Splash will abort any request if the response’s content type doesn’t match any of
the content types in this list. Wildcards are supported.}
7 years ago
7 years ago
\item{forbidden_content_types}{Comma-separated list of forbidden content types. If
present, Splash will abort any request if the response’s content type matches
any of the content types in this list. Wildcards are supported.}
7 years ago
7 years ago
\item{viewport}{View width and height (in pixels) of the browser viewport to render the
web page. Format is “width>xheight”, e.g. 800x600. Default value is "full".}
7 years ago
7 years ago
\item{images}{Whether to download images.}
7 years ago
7 years ago
\item{headers}{HTTP headers to set for the first outgoing request.}
7 years ago
7 years ago
\item{body}{Body of HTTP POST request to be sent if method is POST.}
7 years ago
7 years ago
\item{http_method}{HTTP method of outgoing Splash request.}
7 years ago
7 years ago
\item{save_args}{A list of argument names to put in cache.}
7 years ago
7 years ago
\item{load_args}{Parameter values to load from cache}
\item{http2}{Enable or disable HTTP2 support. \code{TRUE} to enable; \code{FALSE} to disable; defaults to \code{FALSE}
when \code{engine} is \code{webkit} due to malformed behaviour in 3.4.x of Splash}
\item{engine}{one of \code{webkit} or \code{chromium}; defaults to \code{webkit}}
7 years ago
}
7 years ago
\value{
a \link{magick} image object
}
7 years ago
\description{
Return an image (in PNG format) of the javascript-rendered page.
7 years ago
}
\examples{
\dontrun{
render_png(url = "https://httpbin.org/")
}
}
7 years ago
\references{
\href{http://splash.readthedocs.io/en/stable/index.html}{Splash docs}
}
7 years ago
\seealso{
Other splash_renderers:
\code{\link{execute_lua}()},
\code{\link{render_har}()},
\code{\link{render_html}()},
\code{\link{render_jpeg}()},
\code{\link{render_json}()}
7 years ago
}
6 years ago
\concept{splash_renderers}