.NET Cloud REST API for Visio Processing


Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Free Trial
This cloud SDK enables your C#, ASP.NET & other .NET cloud apps to create & process Visio diagrams from within your apps without installing Microsoft Visio.
Visio Processing Features
- Retrieve document information of a Visio diagram.
- Programmatically create a new Microsoft Visio diagram file.
- Convert Visio flow-charts to other supported formats.
- Upload your business-oriented Visio diagrams to cloud storage.
- Export Visio files to raster images, fixed-layout, and HTML formats.
Microsoft Visio: VSDX, VDX, VSX, VTX, VSSX, VSTX, VSDM, VSSM, VSTM
Save Visio As
Fixed Layout: PDF, XPS
Images: SVG, JPEG, PNG, BMP, TIFF
Metafile: EMF
Web: HTML
Other: XAML, SWF
Microsoft Visio: VSD, VDW, VSS, VST
Get Started
You do not need to install anything to get started with Aspose.Diagram Cloud SDK for .NET. All you need to do is create an account at Aspose for Cloud and get your application information.
Simply execute Install-Package Aspose.Diagram-Cloud
from the Package Manager Console in Visual Studio to fetch & reference Aspose.Diagram assembly in your project. If you already have Aspose.Diagram Cloud SDK for .NET and want to upgrade it, please execute Update-Package Aspose.Diagram-Cloud
to get the latest version.
Please check the GitHub Repository for common usage scenarios.
Create VDX
Diagram file using C# Code
// for complete examples, please visit https://github.com/aspose-diagram-cloud/aspose-diagram-cloud-dotnet
// Get Client Id and Client Secret from https://dashboard.aspose.cloud
string MyClientId = "My-Client-Id";
string MyClientSecret = "My-Client-Secret";
// Create instance of the API
var apiInstance = new DiagramApi("client_credentials", MyClientSecret, MyClientId);
// Create new diagram
CreateNewResponse response = apiInstance.CreateNew("New_Diagram.vdx", "Diagrams", true);
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Free Trial