Last active
April 17, 2021 09:59
-
-
Save theDreamer911/c4b7b89fff537114f38038ecb6b6adf7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pdf2image import convert_from_path | |
images = convert_from_path('example.pdf', 50) | |
for image in images: | |
image.save('output.png') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment