How to convert JPG to PDF in Python

You can convert a JPG image to PDF in Python by following the given steps. If you want to learn Computer Vision then I will highly recommend you to read This book.

Step 1

Install the Pillow library.

pip install Pillow

Step 2

Now import the Image from PIL. PIL is used for the Pillow library as an alias.

from PIL import Image

Step 3

Now read the image from the location. In my case “C:\\AiHints” is the location and “cat.jpg” is the name of the image. Change it according to your image location and name.

image = Image.open("C:\\AiHints\\cat.jpg")

Step 4

This code will convert the above jpg image into a pdf and will save it at the location “C:\\AiHints”.

image.save("C:\\AiHints\\cat.pdf")

People are also reading:

Best Python Books

What is Computer Vision? Examples, Applications, Techniques

Top 10 Computer Vision Books

Books for Machine Learning (ML)

Free Learning Resources

Leave a Comment

Your email address will not be published.