Tools to Work with the 'Splash' JavaScript Rendering Service in R
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

65 rindas
2.9 KiB

% 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, url, base_url = NULL, quality = 75, width = 1024,
height = 768, timeout = 30, resource_timeout = NULL, wait = 0,
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)
}
\arguments{
\item{splash_obj}{Object created by a call to \link{splash}}
\item{url}{The URL to render (required)}
\item{base_url}{TBD The base url to render the page with.}
\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.}
\item{timeout}{TBD A timeout (in seconds) for the render (defaults to 30).}
\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. Default is \code{FASLE}}
\item{proxy}{TBD Proxy profile name or proxy URL.}
\item{js}{TBD Javascript profile name.}
\item{js_src}{TBD JavaScript code to be executed in page context.}
\item{filters}{TBD Comma-separated list of request filter names.}
\item{allowed_domains}{TBD Comma-separated list of allowed domain names. If present, Splash wont load anything neither from domains not in this list nor from subdomains of domains not in this list.}
\item{allowed_content_types}{TBD Comma-separated list of allowed content types. If present, Splash will abort any request if the responses content type doesnt match any of the content types in this list. Wildcards are supported.}
\item{forbidden_content_types}{TBD Comma-separated list of forbidden content types. If present, Splash will abort any request if the responses content type matches any of the content types in this list. Wildcards are supported.}
\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.}
\item{images}{TBD Whether to download images.}
\item{headers}{TBD HTTP headers to set for the first outgoing request.}
\item{body}{TBD Body of HTTP POST request to be sent if method is POST.}
\item{http_method}{TBD HTTP method of outgoing Splash request.}
\item{save_args}{TBD A list of argument names to put in cache.}
\item{load_args}{TBD Parameter values to load from cache}
}
\description{
Return a image (in JPEG format) of the javascript-rendered page.
}