Product description
Product Page <https://products.aspose.com/diagram/python-net>
_ | Docs <https://docs.aspose.com/diagram/python-net/>
_ | Demos <https://products.aspose.app/diagram/family/>
_ | Blog <https://blog.aspose.com/category/diagram/>
_ | Code Samples <https://github.com/aspose-diagram/Aspose.Diagram-for-Python-via-.NET>
_ | Free Support <https://forum.aspose.com/c/diagram>
_ | Temporary License <https://purchase.aspose.com/temporary-license>
_ | EULA <https://company.aspose.com/legal/eula>
_
Try our free online apps <https://products.aspose.app/diagram/family>
_ demonstrating some of the most popular Aspose.diagram functionality.
Aspose.Diagram for Python via .Net is a scalable and feature-rich API to process visio files using Python. API offers Visio file creation, manipulation, conversion, rendering. Developers can format pages to the most granular level, create and manipulate shape, render pages, shapes to PDF and images, and much more - all without any dependency on Microsoft Office or Visio application.
Diagram API Features
Aspose.Diagram offers a wide arrange of features for creating, reading, manipulating and saving visio files:
- Create visio files via API.
- Convert shapes to images or PDF.
- Manage comments & hyperlinks.
- Convert pages to PDF, XPS & SVG formats.
- Inter-convert files to popular visio formats.
Performance and Scalability
Aspose.Diagram for Python via .NET is designed to perform equally well on the server or client-side. Aspose.Diagram for Python via .NET is a single .NET library that can be deployed with any .NET application by simply copying it. You do not have to worry about other services or modules.
Supported Document Formats
Aspose.Diagram for Python supports a wide range of formats for loading and saving documents<https://docs.aspose.com/diagram/python-net/supported-file-formats/>
, some of them are listed below:
Microsoft Visio: VSD, VSX,VTX, VDX, VSDX, VSTX, VSSX, VSTM, VSSM
Fixed Layout: PDF, XPS
Images: JPEG, PNG, BMP, SVG, TIFF, GIF, EMF
Web: HTML
Detect Diagram Format Programming Sample
.. code-block:: python
from aspose.diagram import *
Detect the format of a diagram file
fileFormatInfo = FileFormatUtil.detectFileFormat(test.vsdx")
Display the file format
print("File Format: " + str(fileFormatInfo))
Creating a diagram Document: Programming Samples
.. code-block:: python
from aspose.diagram import *
The path to the documents directory.
#Initialize a Diagram class
diagram = Diagram()
Save diagram in the VSDX format
diagram.save("CreateNewVisio_out.vsdx", SaveFileFormat.VSDX)
Create a PDF with a Diagram
.. code-block:: python
from aspose.diagram import *
# Load an exiting Visio diagram
vsdDiagram = Diagram("Drawing1.vsd")
# Save as PDF
vsdDiagram.save("SaveDiagramToPDFwithAspose_out.pdf", SaveFileFormat.PDF)
Product Page <https://products.aspose.com/diagram/python-net>
_ | Docs <https://docs.aspose.com/diagram/python-net/>
_ | Demos <https://products.aspose.app/diagram/family/>
_ | Blog <https://blog.aspose.com/category/diagram/>
_ | Code Samples <https://github.com/aspose-diagram/Aspose.Diagram-for-Python-via-.NET>
_ | Free Support <https://forum.aspose.com/c/diagram>
_ | Temporary License <https://purchase.aspose.com/temporary-license>
_ | EULA <https://company.aspose.com/legal/eula>
_