Get text and values form pdf? #1027
Replies: 3 comments 3 replies
-
These values are represented in the PDF not as standard text, but rather as "annotations". You can access a page's annotations via { a["title"]:a["data"]["V"].decode("utf-8")
for a in page.annots if "V" in a["data"] } |
Beta Was this translation helpful? Give feedback.
-
Thx - is there any way to get the text and the value of the annotations in the correct order line by line? |
Beta Was this translation helpful? Give feedback.
-
@Rapid1898-code |
Beta Was this translation helpful? Give feedback.
-
Hello - i try to read the data from the attached pdf using the following code:
I get all the text like:
"Authorized capital of the company as on the date of filing"
but i don´t get the values from the boxes on the right side beside the text
eg. in that case "1,000,000"
How can i get this all with the text and the values?
In the same order as it can be seen in the pdf?
Form AOC-4-04042021_signed.pdf
Beta Was this translation helpful? Give feedback.
All reactions