Skip to content

Instantly share code, notes, and snippets.

@groupdocs-com-kb
Last active November 8, 2022 13:30
How to Convert VSDX to PDF in Java. For more information, please follow link: https://kb.groupdocs.com/conversion/java/how-to-convert-vsdx-to-pdf-in-java/
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.PdfConvertOptions;
public class ConvertVsdxToPdfInJava {
public static void main(String[] args) { // Main function to convert VSDX to PDF in Java
// Remove the watermark in output PDF document by adding license
License lic = new License();
lic.setLicense("GroupDocs.Conversion.lic");
// Load the source VSDX file for conversion to PDF
Converter converter = new Converter("sample.vsdx");
// Set the convert options for PDF document
PdfConvertOptions options = new PdfConvertOptions();
// Convert and save the VSDX in PDF format
converter.convert("converted.pdf", options);
System.out.println("Done");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment