Metadata-Version: 2.1
Name: aspose-diagram-python
Version: 23.5
Summary: 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 and 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.
Home-page: https://products.aspose.com/diagram/
Author: aspose-diagram
License: https://company.aspose.com/legal/eula
Keywords: vsd,vsdx,vsdm,vstm,vstx,vdx,vsx,vtx,dxf,html5,pdf,png,emf,jpeg,visio,modeling,conversion,geometry,
Platform: win_amd64
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Manufacturing
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: License :: Free To Use But Restricted
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
Requires-Python: >=3.6,<3.10
Description-Content-Type: text/x-rst

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 *
   # For complete examples and data files, please go to https://github.com/aspose-diagram/Aspose.Diagram-for-.NET
   # 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 *
   # For complete examples and data files, please go to https://github.com/aspose-diagram/Aspose.Diagram-for-.NET
   # 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>`_



