powered by
Draw/preview a raster to a png file
raster_write(x, path, width = 480, height = 480, interpolate = FALSE)
A raster object
name of the file to create
Width and height in pixels.
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)) filepng <- tempfile(fileext = ".png") raster_write(x = r, path = filepng, width = 50, height = 50)
Run the code above in your browser using DataLab