You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to read the labels and values from some pdf fillable form. I used:
x =pdfrw.PdfReader(path)
This gave me a dict with a ['/Root']['/AcroForm']['/Fields'] structure inside, but I can't find the form values I need.
[ pdfminer gives a similar structure, but has a resolver that takes care of getting the labels/values out of that dict, but I couldn't find any for pdfrw ]
Using PyPDF2 I could do:
x = PyPDF2.PdfFileReader(path)
d = x.getFields()
and I would get fields/values of the form.
Is this possible with pdfrw? I couldn't find anything in the examples so I'm asking it here.
If it's possible it would be nice to have an example for this too. (please, thanks)
The text was updated successfully, but these errors were encountered:
I'm trying to read the labels and values from some pdf fillable form. I used:
x =pdfrw.PdfReader(path)
This gave me a dict with a ['/Root']['/AcroForm']['/Fields'] structure inside, but I can't find the form values I need.
[ pdfminer gives a similar structure, but has a resolver that takes care of getting the labels/values out of that dict, but I couldn't find any for pdfrw ]
Using PyPDF2 I could do:
and I would get fields/values of the form.
Is this possible with pdfrw? I couldn't find anything in the examples so I'm asking it here.
If it's possible it would be nice to have an example for this too. (please, thanks)
The text was updated successfully, but these errors were encountered: