Convert Visio to HTML format

Exporter Visio vers HTML

This article explains how to export a Microsoft Visio diagram to HTML using Aspose.Diagram for Python via .NET API.

Use the Diagram class constructor to read the diagram files and the Save method to export the diagram to any supported image format. Developers can save resultant HTML in the local storage or directly to a stream instance.

  1. Save resultant HTML in the local storage.
  2. Save resultant HTML in a stream instance.

The image below shows a VSD file about to be saved to PNG format. You can use other diagram formats (VSDX, VSDM, VSTX, VSSX, VSS, VSSM, VDX, VST, VSTX, VDX, VTX or VSX) as well.

Entrez diagram.
tâche : image_autre_texte
In order to export VSD diagram to HTML, perform the following steps:
  1. Créez une instance de la classe Diagram.
  2. Call the Dagram class' Save method and set HTML as the output format.

Save resultant HTML in the local storage

Le fichier résultant peut être enregistré en transmettant une chaîne de chemin complète, y compris le nom de fichier et l’extension, par exemple @“c:\temp\MyOutput.html”.

Save Resultant HTML in Local Storage Programming Sample