getViewBox(SVGAnnotation)
getViewBox()所属R语言包:SVGAnnotation
Get the dimensions of the viewing area/box of an SVG document
获取SVG文档的可视面积/框尺寸
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This queries the SVG document to fetch and parse the viewBox attribute of the root svg node.
这查询获取解析viewBox根svg节点的属性,SVG文档。
用法----------Usage----------
getViewBox(doc)
参数----------Arguments----------
参数:doc
the parsed XML/SVG document
解析XML / SVG文档
值----------Value----------
It returns a 2-by-2 matrix giving the x and y coordinates in the first and second columns, with the top being in the first row.
它返回一个2-2给予的x和y坐标在顶端第一行,第一列和第二列的矩阵。
作者(S)----------Author(s)----------
Duncan Temple Lang
参见----------See Also----------
enlargeSVGViewBox dim,SVGDocument-method
enlargeSVGViewBoxdim,SVGDocument-method
举例----------Examples----------
doc = svgPlot(plot(1:10))
getViewBox(doc)
dim(doc)
doc = svgPlot(plot(1:10), width = 8, height = 11.5)
getViewBox(doc)
dim(doc)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|