根据给定的参数,将地图输出为图片文件。 对于大幅面、大数据地图的输出,可以通过此接口将地图输出成高分辨率的某种格式的图片。

命名空间:  SuperMap.Mapping
程序集:  SuperMap.Mapping (in SuperMap.Mapping)
版本: dll

语法

C#
public bool OutputMapToFile(
	string fileName,
	ImageType type,
	int dpi,
	Rectangle2D bounds,
	bool isBackTransparent
)

参数

fileName
Type: System..::.String
type
Type: SuperMap.Mapping..::.ImageType
出图的图片类型。
dpi
Type: System..::.Int32
设置出图的分辨率。
bounds
Type: SuperMap.Data..::.Rectangle2D
设置出图的范围。
isBackTransparent
Type: System..::.Boolean
是否背景透明。该参数仅在type 参数设置PNG类型时有效。

返回值

导出成功则返回 true,否则返回 false。

备注

带分辨率参数的出图支持四种格式:BMP、JPG、PNG、TIFF。PNG格式不支持过大分辨率的出图。将地图窗口中可见范围的内容输出为图片文件。当无界面出图时,出图范围需要根据设置ImageSize属性值来确定。

请参见