grid (version 3.6.2)

grid.cap: Capture a raster image

Description

Capture the current contents of a graphics device as a raster (bitmap) image.

Usage

grid.cap()

Arguments

Value

A matrix of R colour names, or NULL if not available.

Details

This function is only implemented for on-screen graphics devices.

See Also

grid.raster

dev.capabilities to see if it is supported.

Examples

Run this code
# NOT RUN {
dev.new(width=0.5, height=0.5)
grid.rect()
grid.text("hi")
cap <- grid.cap()
dev.off()

if(!is.null(cap))
    grid.raster(cap, width=0.5, height=0.5, interpolate=FALSE)
# }

Run the code above in your browser using DataCamp Workspace