我有一个项目,我需要填写预制的 PDF,并且想到的最合乎逻辑的解决方案是将预制的 PDF 制作成 PDF 表单,以便输入值应该去的标签,然后我可以查看 PDF 中的表单标签并将它们与值字典对齐。
我已经使用PyPDF2完成了这项工作。总的来说,我拍了一张网络表单的图像,然后打开 Acrobat 并根据图像中看到的字段创建了一个 PDF 表单,然后使用PyPDF2填写 PDF 表单字段,但需要注意的是打印那些填写的值似乎在某些浏览器中存在错误,Firefox 就是其中之一。
如何将我的 PDF-Form 转换为标准/平面 PDF,以便保留预填充的值,但丢失可编辑字段(因为我认为这是问题所在)?
from io import BytesIO
import PyPDF2
from django.http import HttpResponse
from PyPDF2.generic import BooleanObject, NameObject, IndirectObject
def pdf_view(request):
template = 'templates/template.pdf'
outfile = "templates/test.pdf"
input_stream = open(template, "rb")
pdf_reader = PyPDF2.PdfFileReader(input_stream, strict=False)
if "/AcroForm" in pdf_reader.trailer["/Root"]:
pdf_reader.trailer["/Root"]["/AcroForm"].update(
{NameObject("/NeedAppearances"): BooleanObject(True)})
pdf_writer = PyPDF2.PdfFileWriter()
set_need_appearances_writer(pdf_writer)
if "/AcroForm" in pdf_writer._root_object:
# Acro form is form field, set needs appearances to fix printing issues
pdf_writer._root_object["/AcroForm"].update(
{NameObject("/NeedAppearances"): BooleanObject(True)})
data_dict = {
'first_name': 'John',
'last_name': 'Smith',
'email': 'mail@mail.com',
'phone': '889-998-9967',
'company': 'Amazing Inc.',
'job_title': 'Dev',
'street': '123 Main Way',
'city': 'Johannesburg',
'state': 'New Mexico',
'zip': 96705,
'country': 'USA',
'topic': 'Who cares...'
}
pdf_writer.addPage(pdf_reader.getPage(0))
pdf_writer.updatePageFormFieldValues(pdf_writer.getPage(0), data_dict)
output_stream = BytesIO()
pdf_writer.write(output_stream)
# print(fill_in_pdf(template, data_dict).getvalue())
# fill_in_pdf(template, data_dict).getvalue()
response = HttpResponse(output_stream.getvalue(), content_type='application/pdf')
response['Content-Disposition'] = 'inline; filename="completed.pdf"'
input_stream.close()
return response
def set_need_appearances_writer(writer):
try:
catalog = writer._root_object
# get the AcroForm tree and add "/NeedAppearances attribute
if "/AcroForm" not in catalog:
writer._root_object.update({
NameObject("/AcroForm"): IndirectObject(len(writer._objects), 0, writer)})
need_appearances = NameObject("/NeedAppearances")
writer._root_object["/AcroForm"][need_appearances] = BooleanObject(True)
except Exception as e:
print('set_need_appearances_writer() catch : ', repr(e))
return writer