The images endpoint turns a plot (which may be given in multiple forms) into an image of the desired format.
plotly_IMAGE(
x,
width = 1000,
height = 500,
format = "png",
scale = 1,
out_file,
...
)either a plotly object or a list.
Image width in pixels
Image height in pixels
The desired image format 'png', 'jpeg', 'svg', 'pdf', 'eps', or 'webp'
Both png and jpeg formats will be scaled beyond the specified width and height by this number.
A filename for writing the image to a file.
arguments passed onto httr::RETRY
if (FALSE) { # \dontrun{
p <- plot_ly(x = 1:10)
Png <- plotly_IMAGE(p, out_file = "plotly-test-image.png")
Jpeg <- plotly_IMAGE(p, format = "jpeg", out_file = "plotly-test-image.jpeg")
Svg <- plotly_IMAGE(p, format = "svg", out_file = "plotly-test-image.svg")
Pdf <- plotly_IMAGE(p, format = "pdf", out_file = "plotly-test-image.pdf")
} # }