将 Visio 转换为图像格式
Contents
[
Hide
]
将图表导出为图像文件格式
本文介绍了如何使用 将 Microsoft Visio diagram 导出到图像Aspose.Diagram for .NETAPI。使用 [Diagram] 类构造函数读取 diagram 文件,并使用 Save 方法将 diagram 导出为任何支持的图像格式。
要将 diagram 导出到图像:
- 创建 Diagram 类的实例。
- 调用 Diagram 类的 Save 方法并设置要导出的图像格式。输出的图像文件看起来像原始文件。
导出 Microsoft Visio 绘图到图像文件
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import aspose.diagram | |
from aspose.diagram import * | |
#// Initialize a Diagram class | |
diagram = Diagram(os.path.join(sourceDir, "Drawing1.vsdx")) | |
#// Save diagram in the png format | |
diagram.save("Visio_out.png", SaveFileFormat.PNG) |
也可以将特定页面保存为图像,而不是整个文档:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import aspose.diagram | |
from aspose.diagram import * | |
#// Initialize a Diagram class | |
diagram = Diagram(os.path.join(sourceDir, "Drawing1.vsdx")) | |
#// Save diagram as PNG | |
options = saving.ImageSaveOptions(SaveFileFormat.PNG) | |
#// Save one page only, by page index | |
options.page_index = 0 | |
#// Save diagram in the png format | |
diagram.save("ExportPageToImage_out.png", options) |