DEV Community

AsposeDiagram
AsposeDiagram

Posted on

3 2

Convert Microsoft Visio Document to JPG in Java

Developers can convert any Microsoft Visio document to JPG or JPEG (Joint Photographic Experts Group) in Java using Aspose.Diagram which is a light-weight, extensible, easy to use API and helps developers to create, manipulate and convert Microsoft Visio files to various formats on client side and server-side without any need to install Microsoft Visio or using any sort of Microsoft Office automation.

Supported Platforms

Aspose.Diagram supports both Java and .NET platforms. Please see Aspose.Diagram for Java and Aspose.Diagram for .NET for your reference.

Sample Microsoft Visio Document - VSDX

For demonstration, we will convert the following sample Microsoft Visio document to JPG or JPEG in Java using Aspose.Diagram for Java. However, you can use any Microsoft Visio document of your choice inside the sample code and it will also be converted to JPEG fine.

Sample Microsoft Visio Document to be converted to JPG or JPEG using Aspose.Diagram API.

Licensing

Please note, if you will execute the code without prior setting the Aspose.Diagram license, you will get Evaluation Watermark in your output documents. For more information, please go through Licensing.

Sample Code

The following sample code converts the Microsoft Visio document to JPG or JPEG by performing these steps.

  • Load Microsoft Visio document to com.aspose.diagram.Diagram object.
  • Specify ImageSaveOptions to set resolution for clear image.
  • Save the com.aspose.diagram.Diagram object into JPG format with specified ImageSaveOptions.
// Path for input and output documents directory.
String dirPath = "D:/Download/";
// Load the sample Microsoft Visio document inside the com.aspose.diagram.Diagram object.
com.aspose.diagram.Diagram dg = new Diagram(dirPath + "SampleConvertMicrosoftVisioDocumentToJPEG.vsdx");
// Specify Image Save Options - set the resolution of your choice.
com.aspose.diagram.ImageSaveOptions imgOpts = new com.aspose.diagram.ImageSaveOptions(SaveFileFormat.JPEG);
imgOpts.setResolution(200);
// Save the Diagram object into JPG format with specified ImageSaveOptions.
dg.save(dirPath + "OutputConvertMicrosoftVisioDocumentToJPEG.jpg", imgOpts);

Output JPG or JPEG of Microsoft Visio Document by Aspose.Diagram

The following snapshot shows the Output JPG or JPEG of Microsoft Visio Document generated by Aspose.Diagram with the code given above. As you can see, the JPG looks exactly same as Microsoft Visio document.

Output JPG or JPEG generated by Aspose.Diagram from Microsoft Visio document.

Top comments (0)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay