python - 如何在 PDF 中附加多个文件?

标签 python python-3.x pdf attachment pypdf

我有一个对象列表:List = ['Doc1.xlsx','Doc2.csv','Doc3.pdf'] 及其名称列表:List1 = ['Doc1_name.xlsx'、'Doc2_name.csv'、'Doc3_name.pdf']。 我需要将它们附加到现有的 PDF 中。我尝试使用以下代码,该代码仅在我有一个附件时才有效。现在我尝试迭代附件以附加所有附件,但在 Final.pdf 中将仅附加最后一个对象 'Doc3.pdf'

fileReader = PdfFileReader('Existing_pdf.pdf', 'rb')
fileWriter = PdfFileWriter()
fileWriter = appendPagesFromReader(fileReader)

for j in range(1, len(List)):
    fileWriter.addAtachment(List1[j],List[j])

with open('Final.pdf', 'wb') as output_pdf:
    fileWriter.write(output_pdf)

最佳答案

在我看来,addAttachment-Method 总是会替换当前的附件。

来自 PyPDF2 Github 中的 pdf.py :

def addAttachment(self, fname, fdata):
    file_entry = DecodedStreamObject()
    file_entry.setData(fdata)
    file_entry.update({
            NameObject("/Type"): NameObject("/EmbeddedFile")
            })

    efEntry = DictionaryObject()
    efEntry.update({ NameObject("/F"):file_entry })

    filespec = DictionaryObject()
    filespec.update({
            NameObject("/Type"): NameObject("/Filespec"),
            NameObject("/F"): createStringObject(fname),  # Perhaps also try TextStringObject
            NameObject("/EF"): efEntry
            })

    embeddedFilesNamesDictionary = DictionaryObject()
    embeddedFilesNamesDictionary.update({
            NameObject("/Names"): ArrayObject([createStringObject(fname), filespec])
            })

    embeddedFilesDictionary = DictionaryObject()
    embeddedFilesDictionary.update({
            NameObject("/EmbeddedFiles"): embeddedFilesNamesDictionary
            })
    # Update the root
    self._root_object.update({
        NameObject("/Names"): embeddedFilesDictionary
        })

我相信的地方

self._root_object.update({
        NameObject("/Names"): embeddedFilesDictionary
        })

替换附件,而不是添加附件。

编辑: 该脚本帮助我附加两个 .txt 文件。 它使用上面的 addAttachment 方法,我对其进行了稍微调整以启用附加多个文件。

from PyPDF2 import PdfFileReader, PdfFileWriter
from PyPDF2.generic import DecodedStreamObject, NameObject, DictionaryObject, createStringObject, ArrayObject


def appendAttachment(myPdfFileWriterObj, fname, fdata):
    # The entry for the file
    file_entry = DecodedStreamObject()
    file_entry.setData(fdata)
    file_entry.update({NameObject("/Type"): NameObject("/EmbeddedFile")})

    # The Filespec entry
    efEntry = DictionaryObject()
    efEntry.update({ NameObject("/F"):file_entry })

    filespec = DictionaryObject()
    filespec.update({NameObject("/Type"): NameObject("/Filespec"),NameObject("/F"): createStringObject(fname),NameObject("/EF"): efEntry})

    if "/Names" not in myPdfFileWriterObj._root_object.keys():
        # No files attached yet. Create the entry for the root, as it needs a reference to the Filespec
        embeddedFilesNamesDictionary = DictionaryObject()
        embeddedFilesNamesDictionary.update({NameObject("/Names"): ArrayObject([createStringObject(fname), filespec])})

        embeddedFilesDictionary = DictionaryObject()
        embeddedFilesDictionary.update({NameObject("/EmbeddedFiles"): embeddedFilesNamesDictionary})
        myPdfFileWriterObj._root_object.update({NameObject("/Names"): embeddedFilesDictionary})
    else:
        # There are files already attached. Append the new file.
        myPdfFileWriterObj._root_object["/Names"]["/EmbeddedFiles"]["/Names"].append(createStringObject(fname))
        myPdfFileWriterObj._root_object["/Names"]["/EmbeddedFiles"]["/Names"].append(filespec)


fr = PdfFileReader('dummy.pdf','rb')
fw = PdfFileWriter()
fw.appendPagesFromReader(fr)

my_attach_files = ['test.txt','test2.txt']
for my_test in my_attach_files:
    with open(my_test, 'rb') as my_test_attachment:
        my_test_data = my_test_attachment.read()
    appendAttachment(fw, my_test, my_test_data)

with open('dummy_new.pdf','wb') as file:
    fw.write(file)

希望这对您有用。

关于python - 如何在 PDF 中附加多个文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59085308/

相关文章:

python - 如何用一个类支持python中的 `in`操作

c# - 如何在 asp.net 中索引 .doc 和 .pdf 文件

python - Unicode 字符是 Geraldo/ReportLab 生成的 PDF 中的框

python - 如何将字符串转换为日期时间?

python - 这个函数的大 O 表示法是什么?

php - 使用 Knp Snappy 生成 pdf 文件时出现错误字符

python - 获取排列中删除字符的字符串列表

python - 获取最终预测蒙版中的轮廓坐标

Python 在运行测试时导入 src 模块

python - 哎呀类(class)圈子