保存图表 (数据管理)
摘要
将图表保存为图像、矢量或图表文件。
用法
- 使用此工具,可将图表保存为图表文件 (.grf) 或者以下某一图像或矢量格式。
图表的导出格式图像格式
矢量格式
Windows 位图 (.bmp)
可伸缩矢量图形 (.svg)
GIF (.gif)
Adobe Acrobat PDF (.pdf)
JPEG (.jpg)
Encapsulated PostsScript (.eps)
可移植网络图形 (.png)
增强型图元文件 (.emf)
画笔 (.pcx)
Windows 元文件 (.wmf)
-
将图表保存为所需格式时,需要指定输出文件名中的文件扩展名。例如,如果要将图表导出为 Windows 位图,则需要将输出文件名指定为 C:\temp\outGraph.bmp。
- 此工具不适用于非 Windows 平台。
语法
SaveGraph_management (in_graph, out_graph_file, {maintain_image_aspect}, {image_width}, {image_height})
参数 | 说明 | 数据类型 |
in_graph |
输入图表名称或位置。 可输入现有图表文件 (*.grf) 的位置。 但是,在 ArcGIS 应用程序(ArcMap、ArcGlobe 或 ArcScene)中使用此工具时,可输入存在于 ArcGIS 文档中的图表,也可输入现有图表文件 (*.grf) 的位置。 | File |
out_graph_file |
输出图像、矢量或图表文件。 支持的图像格式和矢量格式包括:
| File |
maintain_image_aspect (可选) |
| Boolean |
image_width (可选) |
输出图像的宽度(以像素为单位)。 | Integer |
image_height (可选) |
输出图像的高度(以像素为单位)。 | Integer |
代码实例
SaveGraph 示例(独立脚本)
将图表另存为 Windows 位图图像。
# Name: SaveGraph_ExampleBMP.py
# Description: Save a graph as an image
# Import system modules
import arcpy
from arcpy import env
# Set environment settings
env.workspace = "c:/temp"
#Set local variables
graph_grf = "us_pop_2003.grf"
outputFile = "outgraph.bmp"
#Execute SaveGraph
arcpy.SaveGraph_management(graph_grf, outputFile, "MAINTAIN_ASPECT_RATIO")
环境
相关主题
许可信息
ArcGIS for Desktop Basic:是
ArcGIS for Desktop Standard:是
ArcGIS for Desktop Advanced:是
9/15/2013