Create VSDX Documents via Python
Native and high performance VSDX (Portable Document Format) creation programmatically using Python library.
Generating VSDX file dynamically within running application is easy. In order to create VSDX documents from scratch without requiring MS Office, we’ll use
API which is a feature-rich, powerful and easy to use conversion API for Python platform. You can download its latest version directly from
How to Create VSDX via Python
It is easy for the developers to create, load, modify and convert VSDX (Portable Document Format) within running different reporting applications for data processing in just a few lines of code.
- Include the namespace in your class file
- Create Diagram class instance.
- Access the first page of the diagram.
- Add text in the page.
- Use save method to save the diagram as VSDX file.
System Requirements
Aspose.Diagram for Python is platform-independent API and can be used on any platform (Windows, Linux and MacOS), just make sure that system have Java 1.8 or higher, Python 3.5 or higher.
- Install Java and add it to PATH environment variable, for example:
PATH=C:\Program Files\Java\jdk1.8.0_131;
. - Install Aspose.Diagram for Python from pypi, use command as:
$ pip install aspose-diagram
.
Create Html Python Conversion Source Code
import jpype
import asposediagram
jpype.startJVM()
from asposediagram.api import *
// Create Diagram class instance.
diagram = new Diagram();
// Access the first page of the diagram.
page = diagram.getPages().get(0);
// Add Text shape.
shape = page.addText(1, 1, 1, 1, "Test text", "Calibri", "#a5a5a5", 0.25);
// Save the Diagram as .vsdx file.
diagram.save("out.vsdx",SaveFileFormat.VSDX);
VSDX What is VSDX File Format?
Files with .VSDX extension represent Microsoft Visio file format introduced from Microsoft Office 2013 onwards. It was developed to replace the binary file format, .VSD, which is supported by earlier versions of Microsoft Visio. It is also supported on Visio Services in Microsoft SharePoint Server 2013 and does not require an intermediary file format for publishing to SharePoint Server. Visio files are used to create drawings that contain visual objects, flow charts, UML diagram, information flow, organizational charts, software diagrams, network layout, database models, objects mapping and other similar information. Files generated using Visio can also be exported to different file formats such as PNG, BMP, PDF and others.
Read More