公共 API Aspose.Diagram 17.01 的变化
Contents
[
Hide
]
本文档描述了 Aspose.Diagram API 从版本 16.12.0 到 17.1.0 的变化,模块/应用程序开发人员可能会感兴趣。它不仅包括新的和更新的公共方法,还包括对 Aspose.Diagram 中幕后行为的任何更改的描述。
转换具有选择形状的绘图 Visio
开发人员可以选择特定的形状将 Visio 绘图转换为任何其他受支持的格式。我们添加了形状中的成员渲染保存选项类为此目的。每个保存选项类都是 RenderingSaveOptions 类的扩展形式。请检查代码示例:
C#
// the path to the documents directory.
string dataDir = RunExamples.GetDataDir_LoadSaveConvert();
// call the diagram constructor to load diagram from a VSD file
Diagram diagram = new Diagram(dataDir + "Drawing1.vsdx");
// create an instance SVG save options class
SVGSaveOptions options = new SVGSaveOptions();
ShapeCollection shapes = options.Shapes;
// get shapes by page index and shape ID, and then add in the shape collection object
shapes.Add(diagram.Pages[0].Shapes.GetShape(1));
shapes.Add(diagram.Pages[0].Shapes.GetShape(2));
// save Visio drawing
diagram.Save(dataDir + "SelectiveShapes_out.svg", options);