Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save groupdocs-com-kb/e70e63050f55e95b5264e6efde409545 to your computer and use it in GitHub Desktop.
Save groupdocs-com-kb/e70e63050f55e95b5264e6efde409545 to your computer and use it in GitHub Desktop.
How to Convert Word to PDF in Java. For more information, please follow link: https://kb.groupdocs.com/conversion/java/how-to-convert-word-to-pdf-in-java/
import com.groupdocs.conversion.Converter;
import com.groupdocs.conversion.licensing.License;
import com.groupdocs.conversion.options.convert.PdfConvertOptions;
import com.groupdocs.conversion.options.convert.Rotation;
public class ConvertWordToPdfInJava {
public static void main(String[] args) { // Main function to convert Word to PDF in Java
// Remove the watermark in output Text document by adding license
License lic = new License();
lic.setLicense("GroupDocs.Conversion.lic");
// Load the source Word file for conversion to PDF
Converter converter = new Converter("sample.docx");
// Set the convert options for PDF document
PdfConvertOptions options = new PdfConvertOptions();
options.setPageNumber(2);
options.setPagesCount(1);
options.setRotate(Rotation.On180);
options.setDpi(300);
options.setWidth(1024);
options.setHeight(768);
// Convert and save the DOCX 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