shift image

image_shift(input, x = 0, y = 0, openfile = TRUE, output = input)

Arguments

input

File name of .svg file to input

x

Shift x. Can be positive or negative.

y

Shift y. Can be positive or negative.

openfile

Open file in default program for .svg format. Defaults to FALSE.

output

File name of .svg file to output. Default is to overwrite the input file.

Value

output name

Examples

.old_wd <- setwd(tempdir()) library(spiro) spiro(fixed_radius = 3, cycling_radius = 1, file = "image_shift.svg") %>% image_shift(x = 200, y = 200) setwd(.old_wd)