
Word to PDF is one of the most popular and immensely performed document conversions. The DOCX or DOC files are converted to PDF format before they are printed or shared. In this article, we will automate Word to PDF conversion in Python. The steps and code samples will demonstrate how to convert Word DOCX or DOC to PDF with Python. Also, you will learn about different options to customize Word to PDF conversion.
- Python Library for Word DOCX to PDF Conversion
- Convert DOCX to PDF in Python
- Python DOCX to PDF with a Particular PDF Standard
- Convert Range of Pages in Word document to PDF
- Apply Image Compression in DOCX to PDF
Python Library for Word to PDF Conversion - Free Download
For converting Word 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 and DOC 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 Word DOCX to PDF in Python
The following are the steps to convert a Word document to PDF in Python.
- Load the Word document using Document class.
- Convert Word document to PDF using Document.save() method.
The following code sample shows how to convert a Word DOCX file to PDF.
Python Word 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 Word to PDF conversion using Python.
- Load the Word document using Document class.
- Create an object of PdfSaveOptions class and set PDF standard using PdfSaveOptions.compliance property.
- Convert Word document to PDF using Document.save() method.
The following code sample shows how to set a particular standard in Word 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 Word document to PDF.
DOC 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 Word DOCX to PDF in Python.
- Load the Word 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 Word document to PDF using Document.save() method.
The following code sample shows how to set image compression in Word 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 Word DOCX or DOC files to PDF in Python. Moreover, you have seen different options to customize the DOC or 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.