Tools to Work with the 'Splash' JavaScript Rendering Service in R
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

89 lignes
3.2 KiB

il y a 7 ans
% Generated by roxygen2: do not edit by hand
il y a 5 ans
% Please edit documentation in R/render-png.R
il y a 7 ans
\name{render_png}
\alias{render_png}
il y a 6 ans
\title{Return an image (in PNG format) of the javascript-rendered page.}
il y a 7 ans
\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)
il y a 7 ans
}
\arguments{
\item{splash_obj}{Object created by a call to \code{\link[=splash]{splash()}}}
il y a 7 ans
\item{url}{The URL to render (required)}
il y a 7 ans
\item{base_url}{The base url to render the page with.}
il y a 7 ans
il y a 6 ans
\item{width, height}{Resize the rendered image to the given width/height (in
pixels) keeping the aspect ratio. These are optional}
il y a 7 ans
il y a 7 ans
\item{timeout}{A timeout (in seconds) for the render (defaults to 30). Without
reconfiguring the startup parameters of the Splash server (not this package)
the maximum allowed value for the timeout is 60 seconds.}
il y a 7 ans
\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).}
il y a 6 ans
\item{render_all}{If \code{TRUE} extend the viewport to include the whole webpage
(possibly very tall) before rendering.}
il y a 7 ans
\item{proxy}{Proxy profile name or proxy URL.}
il y a 7 ans
il y a 7 ans
\item{js}{Javascript profile name.}
il y a 7 ans
il y a 7 ans
\item{js_src}{JavaScript code to be executed in page context.}
il y a 7 ans
il y a 7 ans
\item{filters}{Comma-separated list of request filter names.}
il y a 7 ans
il y a 7 ans
\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.}
il y a 7 ans
il y a 7 ans
\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.}
il y a 7 ans
il y a 7 ans
\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.}
il y a 7 ans
il y a 7 ans
\item{viewport}{View width and height (in pixels) of the browser viewport to render the
web page. Format is “<width>x<height>”, e.g. 800x600. Default value is "full".}
il y a 7 ans
il y a 7 ans
\item{images}{Whether to download images.}
il y a 7 ans
il y a 7 ans
\item{headers}{HTTP headers to set for the first outgoing request.}
il y a 7 ans
il y a 7 ans
\item{body}{Body of HTTP POST request to be sent if method is POST.}
il y a 7 ans
il y a 7 ans
\item{http_method}{HTTP method of outgoing Splash request.}
il y a 7 ans
il y a 7 ans
\item{save_args}{A list of argument names to put in cache.}
il y a 7 ans
il y a 7 ans
\item{load_args}{Parameter values to load from cache}
il y a 7 ans
}
il y a 7 ans
\value{
a \link{magick} image object
}
il y a 7 ans
\description{
il y a 6 ans
Return an image (in PNG format) of the javascript-rendered page.
il y a 7 ans
}
\examples{
\dontrun{
render_png(url = "https://httpbin.org/")
}
}
il y a 7 ans
\references{
\href{http://splash.readthedocs.io/en/stable/index.html}{Splash docs}
}
il y a 7 ans
\seealso{
Other splash_renderers: \code{\link{execute_lua}},
\code{\link{render_har}}, \code{\link{render_html}},
\code{\link{render_jpeg}}, \code{\link{render_json}}
il y a 7 ans
}
il y a 6 ans
\concept{splash_renderers}