rgl (version 0.100.50)

rgl.snapshot: export screenshot

Description

Saves the screenshot as png file.

Usage

rgl.snapshot( filename, fmt = "png", top = TRUE )
snapshot3d( ... )

Arguments

filename

full path to filename.

fmt

image export format, currently supported: png

top

whether to call rgl.bringtotop

...

arguments to pass to rgl.snapshot

Details

Animations can be created in a loop modifying the scene and saving each screenshot to a file. Various graphics programs (e.g. ImageMagick) can put these together into a single animation. (See movie3d or the example below.)

See Also

movie3d, rgl.viewpoint

Examples

Run this code
# NOT RUN {
# }
# NOT RUN {
#
# create animation
#

shade3d(oh3d(), color = "red")
rgl.bringtotop()
rgl.viewpoint(0, 20)

olddir <- setwd(tempdir())
for (i in 1:45) {
  rgl.viewpoint(i, 20)
  filename <- paste("pic", formatC(i, digits = 1, flag = "0"), ".png", sep = "")
  rgl.snapshot(filename)
}
## Now run ImageMagick in tempdir().  Use 'convert' instead of 'magick'
## if you have an older version of ImageMagick:
##    magick -delay 10 *.png -loop 0 pic.gif
setwd(olddir)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace