im_save: Save an image to disk

Description Usage Arguments Value Examples

View source: R/utils.R

Description

Save an image to disk

Usage

1
im_save(im, name, path, format = "png", quality = 0.95)

Arguments

im

An image.

name

Name of the image file.

path

Path to file.

format

Image format. Either "jpg", "png", "tiff", or "bmp". Default is "png".

quality

(jpg only) default is 0.95. Higher quality means less compression.

Value

No return value, called for side effects.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
im = sketch(face)

# im.png is saved to the current working directory
im_save( im, name = "im", path = getwd() )

# myimage.jpg is saved to a specified directory
im_save( im, name = "myimage", path = "path/to/image", format = "jpg" )

## End(Not run)

sketcher documentation built on July 2, 2020, 4:06 a.m.

Related to im_save in sketcher...