Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python pdf to image

#The pdf2image library can be used
#You can install it simply using,

pip install pdf2image
#Once installed you can use following code to get images.

from pdf2image import convert_from_path
pages = convert_from_path('pdf_file', 500)

#Saving pages in jpeg format

for page in pages:
    page.save('out.jpg', 'JPEG')
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #pdf #image
ADD COMMENT
Topic
Name
2+6 =