If you read in tiff as your own raster, you can use the rasterImage() function.
img = readTIFF('someimage.tiff', native=TRUE) plot(NA,xlim=c(0,nrow(img)),ylim=c(0,ncol(img))) rasterImage(img,0,0,nrow(img),ncol(img))
This method works similarly for functions (and corresponding packages): readJPEG, readTIFF, etc.
source share