Browse our Products 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.
Diverses améliorations ont été apportées à la conversion et à l’exportation des diagrammes Microsoft Visio® au format HTML. Le code C# suivant convertit VSD en HTML à l’aide de l’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);
Auparavant, lorsque le fichier au format Microsoft Visio® VSDX était converti au format vectoriel SVG, tout le texte dans les cases était utilisé pour dépasser les lignes de la case. Ce problème a été résolu maintenant. Voici un exemple de code C# qui fonctionne comme un convertisseur VSD vers SVG à l’aide de l’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);
Pour une liste complète des fonctionnalités, améliorations et corrections de bogues de cette version, veuillez consulter Aspose.Diagram for .NET 22.9 Release Notes.