Learn R Programming

imager (version 0.20)

save.image: Save image

Description

You'll need ImageMagick for formats other than PNG and JPEG. If the image is actually a video, you'll need ffmpeg.

Usage

save.image(im, file)

Arguments

im
an image (of class cimg)
file
path to file. The format is determined by the file's name

Value

nothing

Examples

Run this code
#Create temporary file
tmpF <- tempfile(fileext=".png")
#Save boats image
save.image(boats,tmpF)
#Read back and display
load.image(tmpF) %>% plot

Run the code above in your browser using DataLab