grid.raster
位於 grid
包(package)。 說明
在給定位置、大小和方向渲染光柵對象(位圖圖像)。
用法
grid.raster(image,
x = unit(0.5, "npc"), y = unit(0.5, "npc"),
width = NULL, height = NULL,
just = "centre", hjust = NULL, vjust = NULL,
interpolate = TRUE, default.units = "npc",
name = NULL, gp = gpar(), vp = NULL)
rasterGrob(image,
x = unit(0.5, "npc"), y = unit(0.5, "npc"),
width = NULL, height = NULL,
just = "centre", hjust = NULL, vjust = NULL,
interpolate = TRUE, default.units = "npc",
name = NULL, gp = gpar(), vp = NULL)
參數
image |
任何可以強製轉換為柵格對象的 R 對象。 |
x |
指定 x-location 的數值向量或單位對象。 |
y |
指定 y-location 的數值向量或單位對象。 |
width |
指定寬度的數值向量或單位對象。 |
height |
指定高度的數值向量或單位對象。 |
just |
矩形相對於其 (x, y) 位置的對齊方式。如果有兩個值,則第一個值指定水平對齊方式,第二個值指定垂直對齊方式。可能的字符串值為: |
hjust |
指定水平對齊的數值向量。如果指定,則覆蓋 |
vjust |
指定垂直對齊的數值向量。如果指定,則覆蓋 |
default.units |
指示 |
name |
字符標識符。 |
gp |
類 |
vp |
網格視口對象(或 NULL)。 |
interpolate |
一個邏輯值,指示是否對圖像進行線性插值(替代方法是使用nearest-neighbour插值,這會產生更多塊狀結果)。 |
細節
不需要指定 width
和 height
,在這種情況下,將保留圖像的寬高比。如果同時指定width
和height
,則圖像可能會失真。
並非所有圖形設備都能夠渲染光柵圖像,有些可能無法生成旋轉圖像(即,如果在旋轉視口內渲染光柵對象)。另請參閱 rasterImage
下的評論。
gp
中的所有圖形參數設置都將被忽略,包括 alpha
。
值
一個光柵格羅布。
例子
redGradient <- matrix(hcl(0, 80, seq(50, 80, 10)),
nrow=4, ncol=5)
# interpolated
grid.newpage()
grid.raster(redGradient)
# blocky
grid.newpage()
grid.raster(redGradient, interpolate=FALSE)
# blocky and stretched
grid.newpage()
grid.raster(redGradient, interpolate=FALSE, height=unit(1, "npc"))
# The same raster drawn several times
grid.newpage()
grid.raster(0, x=1:3/4, y=1:3/4, width=.1, interpolate=FALSE)
作者
Paul Murrell
也可以看看
dev.capabilities
看看是否支持。
相關用法
- R grid.record 封裝計算和繪圖
- R grid.reorder 對 gTree 的子級重新排序
- R grid.rect 繪製矩形
- R grid.remove 刪除網格圖形對象
- R grid.curve 在位置之間繪製曲線
- R grid.draw 畫一個網格
- R grid.stroke 描邊或填充路徑
- R grid.points 繪製數據符號
- R grid.force 強製將一個對象放入其組件中
- R grid.display.list 控製網格顯示列表
- R grid.show.viewport 繪製網格視口圖
- R grid.segments 繪製線段
- R grid.frame 創建用於包裝對象的框架
- R grid.group 畫一個組
- R grid.pack 將對象打包在框架內
- R grid.text 繪製文字
- R grid.xspline 繪製 X 樣條線
- R grid.copy 製作網格圖形對象的副本
- R grid.pretty 生成一組合理(“漂亮”)的斷點
- R grid.grab 抓取當前電網輸出
- R grid.show.layout 繪製網格布局圖
- R grid.convert 不同網格坐標係之間的轉換
- R grid.DLapply 修改網格顯示列表
- R grid.delay 封裝計算並生成grob
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Render a raster object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。