raster_write {gdtools} | R Documentation |
Draw/preview a raster to a png file
raster_write(x, path, width = 480, height = 480, interpolate = FALSE)
x |
A raster object |
path |
name of the file to create |
width, height |
Width and height in pixels. |
interpolate |
A logical value indicating whether to linearly interpolate the image. |
r <- as.raster(matrix(hcl(0, 80, seq(50, 80, 10)), nrow = 4, ncol = 5)) raster_write(x = r, path = "raster.png", width = 50, height = 50)