save.image: Save image

save.imageR Documentation

Save image

Description

You'll need ImageMagick for formats other than PNG and JPEG.

Usage

save.image(im, file, quality = 0.7)

Arguments

im

an image (of class cimg)

file

path to file. The format is determined by the file's name

quality

(JPEG only) default 0.7. Higher quality means less compression.

Value

nothing

See Also

save.video

Examples


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

imager documentation built on May 31, 2023, 8:56 p.m.