Render Visio documents as HTML, PDF, and image files
Leave feedback
On this page
GroupDocs.Viewer for Node.js via Java 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 Node.js 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.
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.forEmbeddedResources method and specify the output file name.
constviewer=newgroupdocs.viewer.Viewer("flowchart.vsdx")// Create an HTML file for each drawing page.
// {0} is replaced with the current page number in the file name.
constviewOptions=groupdocs.viewer.HtmlViewOptions.forEmbeddedResources("page_{0}.html")viewer.view(viewOptions)
The following image demonstrates the result:
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.forExternalResources method and pass the following parameters:
The output file path format
The path format for the folder with external resources
The resource URL format
constviewer=newgroupdocs.viewer.Viewer("flowchart.vsdx")// 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.
constviewOptions=groupdocs.viewer.HtmlViewOptions.forEmbeddedResources("page_{0}.html","page_{0}/resource_{0}_{1}","page_{0}/resource_{0}_{1}")viewer.view(viewOptions)
The image below demonstrates the result. External resources are placed 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.
constviewer=newgroupdocs.viewer.Viewer("flowchart.vsdx")// Create a PDF file for the document.
// Specify the PDF file name.
constviewOptions=groupdocs.viewer.PdfViewOptions("output.html")viewer.view(viewOptions)
constviewer=newgroupdocs.viewer.Viewer("flowchart.vsdx")// Create a PNG image for each drawing page.
// {0} is replaced with the current page number in the image name.
constviewOptions=groupdocs.viewer.PngViewOptions("output_{0}.png")// Set width and height.
viewOptions.setWidth(950)viewOptions.setHeight(550)viewer.view(viewOptions)
constviewer=newgroupdocs.viewer.Viewer("flowchart.vsdx")// Create a JPEG image for each drawing page.
// {0} is replaced with the current page number in the image name.
constviewOptions=groupdocs.viewer.JpgViewOptions("output_{0}.jpg")// Set width and height.
viewOptions.setWidth(950)viewOptions.setHeight(550)viewer.view(viewOptions)
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.
To render only master shapes contained in Visio file, use the VisioRenderingOptions.setRenderFiguresOnly method for one of the following classes (depending on the output file format):
The VisioRenderingOptions.setFigureWidth method allows you to specify the shape width in pixels. The height is calculated automatically based on the aspect ratio of each shape.
constviewer=newgroupdocs.viewer.Viewer("flowchart.vsdx")// Convert the Visio file to PDF.
constviewOptions=groupdocs.viewer.PdfViewOptions("output.html")// Render the master shapes only.
viewoptions.getVisioRenderingOptions().setRenderFiguresOnly(true)// Specify shape width in pixels.
viewoptions.getVisioRenderingOptions().setFigureWidth(200)viewer.view(viewOptions)
The image below demonstrates the result.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.