Jamal Mohammed
Results
2
issues of
Jamal Mohammed
When I create a PDF by merging multiple PDFs then only the first page shows up correctly but all subsequent pages show blank form fields. This happens only when this...
is-bug
PdfMerger
Has MCVE
workflow-forms
I am using the following code to update the form fields with a dictionary: ```python from PyPDF2 import PdfFileReader, PdfFileWriter reader = PdfFileReader(open("template_acrobat.pdf", "rb"), strict=False) writer = PdfFileWriter() writer.appendPagesFromReader(reader) writer.updatePageFormFieldValues(writer.pages[0],...
is-bug
Has MCVE
workflow-forms