How to extract image #496
Unanswered
pranjal-jaiswal
asked this question in
Q&A
Replies: 3 comments 5 replies
-
Hi @pranjal-jaiswal Appreciate your interest in the library. You can use the import pdfplumber
pdf = pdfplumber.open("file.pdf")
for page in pdf.pages:
for image in page.images:
do_something(image) |
Beta Was this translation helpful? Give feedback.
5 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How to extract the images of the pdf?
Beta Was this translation helpful? Give feedback.
All reactions