I am trying to convert pdf to an image using the following code
from pdf2image import convert_from_path
pages = convert_from_path('Sample.pdf', 50, poppler_path=r'C:\Program Files\poppler-20.11.0\bin')
pages[0].save('OutImage.jpg', 'JPEG')
The code is working but I am trying to control the output image to make its size 1389 x 1965 Can you guide me, please?
Found size parameter of
convert_from_path
functionExample of using it: