Aspose.Diagram Developer Guide
This section contains practical guides for common development tasks using the Aspose.Diagram LowCode API.
LowCode Converters
About the LowCode API
The LowCode API provides optimized, concise methods for the most common Diagram operations. Each converter class exposes a Process() method with both simple and advanced overloads.
Convert between Visio formats (2 lines):
using Aspose.Diagram.LowCode;
DiagramConverter.Process("input.vsdx", "output.vdx");Convert to PDF:
using Aspose.Diagram.LowCode;
PdfConverter.Process("input.vsdx", "output.pdf");Advanced usage with options:
using Aspose.Diagram.LowCode;
var loadOpts = new LowCodeLoadOptions();
loadOpts.InputFile = "input.vsdx";
var saveOpts = new LowCodeSaveOptions();
saveOpts.OutputFile = "output.vdx";
DiagramConverter.Process(loadOpts, saveOpts);