Explore nuestros productos 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.
Se han realizado varias mejoras en la conversión y exportación de diagramas de Microsoft Visio® a formato HTML. El siguiente código C# convierte VSD a HTML usando API:
// 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);
Anteriormente, cuando el archivo de formato VSDX de Microsoft Visio® se convertía a formato vectorial SVG, todo el texto dentro de los cuadros se usaba para superar las líneas del cuadro. Este problema se ha solucionado ahora. El siguiente es un ejemplo de código C# que funciona como convertidor de VSD a SVG mediante API:
// 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);
Para obtener una lista completa de funciones, mejoras y correcciones de errores en esta versión, visite Aspose.Diagram for .NET 22.9 Release Notes.