tests/test-symbol.R

library(grid)
library(grImport2)
library(gridSVG)

pic <- readPicture("test-symbol-input.svg")

gridsvg("test-symbol-output.svg", width = 6, height = 6, annotate = FALSE)
grid.picture(pic, expansion = 0)
dev.off()

## Encoding in SVG file (on line 1) differs by platform
model <- readLines("test-symbol-output.svg.save")[-1]
test <- readLines("test-symbol-output.svg")[-1]
same <- model == test
if (! all(same)) {
    stop(paste0("symbol output not equal to expected output",
                "------------------",
                model[!same],
                "------------------",
                test[!same],
                collapse="\n"))
}

Try the grImport2 package in your browser

Any scripts or data that you put into this service are public.

grImport2 documentation built on Oct. 27, 2023, 9:07 a.m.