grid.cap(grid)
grid.cap()所属R语言包:grid
Capture a raster image
捕捉栅格图像
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Capture the current contents of a graphics device as a raster (bitmap) image.
作为一个光栅(位图)图像捕捉图形设备的当前内容。
用法----------Usage----------
grid.cap()
Details
详情----------Details----------
This function is only implemented for on-screen graphics devices.
此功能只实现屏幕上的图形设备。
值----------Value----------
A matrix of R colour names.
一个矩阵R的颜色名称。
作者(S)----------Author(s)----------
Paul Murrell
参见----------See Also----------
grid.raster
grid.raster
dev.capabilities to see if it is supported.
dev.capabilities,看它是否支持。
举例----------Examples----------
## Not run: [#无法运行:]
dev.new(width=.5, height=.5)
grid.rect()
grid.text("hi")
cap <- grid.cap()
dev.off()
grid.raster(cap, width=.5, height=.5, interpolate=FALSE)
## End(Not run)[#结束(不运行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|