Tools to Work with the 'Splash' JavaScript Rendering Service in R
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

71 líneas
3.0 KiB

hace 7 años
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/render-jpg.r
\name{render_jpeg}
\alias{render_jpeg}
\title{Return a image (in JPEG format) of the javascript-rendered page.}
\usage{
render_jpeg(splash_obj = splash_local, url, base_url = NULL, quality = 75,
width = 1024, height = 768, timeout = 30, resource_timeout, wait = 0,
hace 7 años
render_all = FALSE, proxy, js, js_src, filters, allowed_domains,
allowed_content_types, forbidden_content_types, viewport = "1024x768",
images, headers, body, http_method, save_args, load_args)
hace 7 años
}
\arguments{
\item{splash_obj}{Object created by a call to \code{\link[=splash]{splash()}}}
hace 7 años
\item{url}{The URL to render (required)}
hace 7 años
\item{base_url}{The base url to render the page with.}
hace 7 años
\item{quality}{JPEG quality parameter in range from 0 to 100. Default is quality=75.}
\item{width}{Resize the rendered image to the given width/height (in pixels) keeping the aspect ratio.}
\item{height}{Resize the rendered image to the given width/height (in pixels) keeping the aspect ratio.}
hace 7 años
\item{timeout}{A timeout (in seconds) for the render (defaults to 30).}
hace 7 años
\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).}
hace 7 años
\item{render_all}{If \code{TRUE} extend the viewport to include the whole webpage (possibly very tall) before rendering.}
hace 7 años
hace 7 años
\item{proxy}{Proxy profile name or proxy URL.}
hace 7 años
hace 7 años
\item{js}{Javascript profile name.}
hace 7 años
hace 7 años
\item{js_src}{JavaScript code to be executed in page context.}
hace 7 años
hace 7 años
\item{filters}{Comma-separated list of request filter names.}
hace 7 años
hace 7 años
\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.}
hace 7 años
hace 7 años
\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.}
hace 7 años
hace 7 años
\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.}
hace 7 años
\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 1024x768.}
hace 7 años
\item{images}{Whether to download images.}
hace 7 años
hace 7 años
\item{headers}{HTTP headers to set for the first outgoing request.}
hace 7 años
hace 7 años
\item{body}{Body of HTTP POST request to be sent if method is POST.}
hace 7 años
hace 7 años
\item{http_method}{HTTP method of outgoing Splash request.}
hace 7 años
hace 7 años
\item{save_args}{A list of argument names to put in cache.}
hace 7 años
hace 7 años
\item{load_args}{Parameter values to load from cache}
hace 7 años
}
hace 7 años
\value{
a \link{magick} image object
}
hace 7 años
\description{
Return a image (in JPEG format) of the javascript-rendered page.
}
hace 7 años
\references{
\href{http://splash.readthedocs.io/en/stable/index.html}{Splash docs}
}