Render Visio documents as HTML, PDF, and image files

GroupDocs.Viewer for Python via .Net allows you to render your Visio diagrams in HTML, PDF, PNG, and JPEG formats. You do not need to use Microsoft Visio or other diagramming software to load and view Visio files within your .Net application (web or desktop).

To start using the GroupDocs.Viewer API, create a Viewer class instance. Pass a document you want to view to the class constructor. You can load the document from a file or stream. Call one of the Viewer.view method overloads to convert the document to HTML, PDF, or image format. These methods allow you to render the entire document or specific pages.

View Visio files online View demos and examples on GitHub

Supported Visio file formats

GroupDocs.Viewer supports the following Visio file formats:

GroupDocs.Viewer can detect the document format automatically based on information in the file header.

Note
Family of Visio file formats currently is not supported by the GroupDocs.Viewer.CrossPlatform.

Render Visio files as HTML

Create an HtmlViewOptions class instance and pass it to the Viewer.view method to convert a Visio file to HTML. The HtmlViewOptions class properties allow you to control the conversion process. For instance, you can embed all external resources in the generated HTML file, minify the output file, and optimize it for printing. Refer to the following documentation section for details: Rendering to HTML.

Create an HTML file with embedded resources

To save all elements of an HTML page (including text, graphics, and stylesheets) into a single file, call the HtmlViewOptions.for_embedded_resources method and specify the output file name.

from groupdocs.viewer import Viewer
from groupdocs.viewer.options import HtmlViewOptions

def render_visio_to_html():
    # Load Visio document
    with Viewer("sample.vsdx") as viewer:
        # Create an HTML file for each drawing page.
        # {0} is replaced with the current page number in the file name.
        viewOptions = HtmlViewOptions.for_embedded_resources("render_visio_to_html/pdf_page_{0}.html")
        viewer.view(viewOptions)

if __name__ == "__main__":
    render_visio_to_html()

sample.vsdx is the sample file used in this example. Click here to download it.

The following image demonstrates the result:

Render a Visio file to HTML

Create an HTML file with external resources

If you want to store an HTML file and additional resource files (such as fonts, images, and stylesheets) separately, call the HtmlViewOptions.for_external_resources method and pass the following parameters:

  • The output file path format
  • The path format for the folder with external resources
  • The resource URL format
from groupdocs.viewer import Viewer
from groupdocs.viewer.options import HtmlViewOptions

def render_visio_to_html_external():
    # Load Visio document
    with Viewer("sample.vsdx") as viewer:
        # Create an HTML file for each drawing page.
        # Specify the HTML file names and location of external resources.
        # {0} and {1} are replaced with the current page number and resource name, respectively.
        viewOptions = HtmlViewOptions.for_external_resources(
            "render_visio_to_html_external/pdf_page_{0}.html", "render_visio_to_html_external/pdf_page_{0}/resource_{0}_{1}", "render_visio_to_html_external/pdf_page_{0}/resource_{0}_{1}")
        viewer.view(viewOptions)

if __name__ == "__main__":
    render_visio_to_html_external()

sample.vsdx is the sample file used in this example. Click here to download it.

The image below demonstrates the result. External resources are placed in a separate folder.

Place HTML resources in a separate folder

Render Visio files as PDF

Create a PdfViewOptions class instance and pass it to the Viewer.view method to convert a Visio file to PDF. The PdfViewOptions class properties allow you to control the conversion process. For instance, you can protect the output PDF file, reorder its pages, and specify the quality of document images. Refer to the following documentation section for details: Rendering to PDF.

from groupdocs.viewer import Viewer
from groupdocs.viewer.options import PdfViewOptions

def render_visio_to_pdf():
    # Load Visio document
    with Viewer("sample.vsdx") as viewer:
        # Create a PDF file for the document.
        # Specify the PDF file name.
        viewOptions = PdfViewOptions("render_visio_to_pdf/visio_diagram.pdf")
        viewer.view(viewOptions)

if __name__ == "__main__":
    render_visio_to_pdf()

sample.vsdx is the sample file used in this example. Click here to download it.

The following image demonstrates the result:

Render a Visio file to PDF

Render Visio files as PNG

Create a PngViewOptions class instance and pass it to the Viewer.view method to convert a Visio file to PNG. Use the PngViewOptions.height and PngViewOptions.width properties to specify the output image size in pixels.

from groupdocs.viewer import Viewer
from groupdocs.viewer.options import PngViewOptions

def render_visio_to_png():
    # Load Visio document
    with Viewer("sample.vsdx") as viewer:
        # Create a PNG image for each drawing page.
        # {0} is replaced with the current page number in the image name.
        viewOptions = PngViewOptions("render_visio_to_png/visio_page_0_{0}.png")
        # Set width and height.
        viewOptions.width = 950
        viewOptions.height = 800
        viewer.view(viewOptions)

if __name__ == "__main__":
    render_visio_to_png()

sample.vsdx is the sample file used in this example. Click here to download it.

The following image demonstrates the result:

Render a Visio file to PNG

Render Visio files as JPEG

Create a JpgViewOptions class instance and pass it to the Viewer.view method to convert a Visio file to JPEG. Use the JpgViewOptions.height and JpgViewOptions.width properties to specify the output image size in pixels.

from groupdocs.viewer import Viewer
from groupdocs.viewer.options import JpgViewOptions

def render_visio_to_jpg():
    # Load Visio document
    with Viewer("sample.vsdx") as viewer:
        # Create a JPEG image for each drawing page.
        # {0} is replaced with the current page number in the image name.
        viewOptions = JpgViewOptions("render_visio_to_jpg/visio_to_jpg_{0}.jpg")
        # Set width and height.
        viewOptions.width = 950
        viewOptions.height = 800
        viewer.view(viewOptions)

if __name__ == "__main__":
    render_visio_to_jpg()

sample.vsdx is the sample file used in this example. Click here to download it.

Render only diagram shapes

GroupDocs.Viewer allows you to render shapes used in a Visio diagram or stored in a Visio stencil file. These shapes are displayed in the Document Stencil pane in Microsoft Visio.

Document Stencil pane in Visio

To render only master shapes contained in Visio file, enable the VisioRenderingOptions.render_figures_only property for one of the following classes (depending on the output file format):

The VisioRenderingOptions.figure_width property allows you to specify the shape width in pixels. The height is calculated automatically based on the aspect ratio of each shape.

from groupdocs.viewer import Viewer
from groupdocs.viewer.options import PdfViewOptions

def render_visio_shapes_only():
    # Load Visio document
    with Viewer("map.vsdx") as viewer:
        # Convert the Visio file to PDF.
        viewOptions = PdfViewOptions("render_visio_shapes_only/visio_shapes_only.pdf")
        # Render the master shapes only.
        viewOptions.visio_rendering_options.render_figures_only = True
        # Specify shape width in pixels.
        viewOptions.visio_rendering_options.figure_width = 200
        viewer.view(viewOptions)

if __name__ == "__main__":
    render_visio_shapes_only()

map.vsdx is the sample file used in this example. Click here to download it.

The image below demonstrates the result.

Render master shapes only

Close
Loading

Analyzing your prompt, please hold on...

An error occurred while retrieving the results. Please refresh the page and try again.