cannot extract text from a pdf1.3(acrobat 4.x) file #337
liutianzhu
started this conversation in
Ask for help with specific PDFs
Replies: 1 comment 1 reply
-
Yes, it does seem to be caused by the font: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
1.pdf
simple code as:
import pdfplumber
path = "1.pdf"
p = pdfplumber.open(path)
p1 = p.pages[0]
t = p1.extract_text()
print(t)
run it, and result as:
BOOKING REQUEST
°
It just get the first few letters, I guess it might be sth with the font?
Beta Was this translation helpful? Give feedback.
All reactions