浏览我们的产品 Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
在将 Microsoft Visio® 图表转换和导出为 HTML 格式方面进行了各种改进。以下 C# 代码使用 API 将 VSD 转换为 HTML:
// The path to the documents directory. string dataDir = RunExamples.GetDataDir_LoadSaveConvert(); // Load diagram Diagram diagram = new Diagram(dataDir + "ExportToHTML.vsd"); // Save diagram diagram.Save(dataDir + "outputVSDtoHTML.html", SaveFileFormat.HTML);
以前,当 Microsoft Visio® VSDX 格式文件转换为 SVG 矢量格式时,框内的所有文本都用于越过框线。此问题现已修复。以下是使用 API 作为 VSD 到 SVG 转换器的示例 C# 代码:
// The path to the documents directory. string dataDir = RunExamples.GetDataDir_LoadSaveConvert(); // Call the diagram constructor to load a VSD diagram Diagram diagram = new Diagram(dataDir + "ExportToSVG.vsd"); // Save SVG Output file diagram.Save(dataDir + "Output.svg", SaveFileFormat.SVG);
有关此版本中的功能、增强功能和错误修复的完整列表,请访问 Aspose.Diagram for .NET 22.9 Release Notes。