Word to PDF Conversion Python

Word to PDF is one of the most popular and immensely performed document conversions. The DOCX files are converted to PDF format before they are printed or shared. In this article, we will automate DOCX to PDF conversion in Python. The steps and code samples will demonstrate how to convert DOCX to PDF in Python. Also, you will learn about different options to customize Word to PDF conversion.

Python Library for DOCX to PDF Conversion - Free Download

For converting DOCX documents to PDF format, we will use Aspose.Words for Python. It is a feature-rich Python library for creating and manipulating Word documents. Moreover, it lets you convert DOCX files to PDF format with high fidelity. The library is hosted on PyPI and you can install it using the following pip command.

pip install aspose-words

Convert DOCX to PDF in Python

The following are the steps to convert a DOCX document to PDF in Python.

  • Load the DOCX document using Document class.
  • Convert DOCX document to PDF using Document.save() method.

The following code sample shows how to convert a DOCX file to PDF.

Python DOCX to PDF with a Particular Standard

You can also specify the particular standard for the converted PDF document such as PDF/A. The following are the steps to specify the PDF standard in DOCX to PDF conversion using Python.

  • Load the DOCX document using Document class.
  • Create an object of PdfSaveOptions class and set PDF standard using PdfSaveOptions.compliance property.
  • Convert DOCX document to PDF using Document.save() method.

The following code sample shows how to set a particular standard in DOCX to PDF conversion.

Python DOCX to PDF - Convert Range of Pages

You can also specify the range of pages you want to convert to PDF format. For this, you can use PdfSaveOptions.page_set property. The following code sample shows how to convert a range of pages in DOCX document to PDF.

DOCX to PDF in Python - Apply Image Compression

Aspose.Words for Python also lets you apply image compression in the converted PDF document. In addition, you can specify the JPEG quality for the images. The following are the steps to set image compression while converting a DOCX to PDF in Python.

  • Load the DOCX document using Document class.
  • Create an object of PdfSaveOptions class.
  • Set image compression using PdfSaveOptions.image_compression property.
  • Set JPEG quality using PdfSaveOptions.jpeg_quality property.
  • Convert DOCX document to PDF using Document.save() method.

The following code sample shows how to set image compression in DOCX to PDF conversion.

Python DOCX to PDF Library - Get a Free Library License

You can get a temporary license in order to use Aspose.Words for Python without evaluation limitations.

Conclusion

In this article, you have learned how to convert DOCX files to PDF in Python. Moreover, you have seen different options to customize the DOCX to PDF conversion in Python. You can learn more about Aspose.Words for Python using documentation. In case you would have any questions, feel free to let us know via our forum.

See Also