Skip to content
Advertisement

Error occurred while using PyPdf2 PdfFileMerger in Python

I have been creating a Python program using PyPdf2 to merge multiple pdf files.

Here is the code

JavaScript

while running the code i encountered the following error:-

JavaScript

Note – I ensured that none of the pdf file is protected with password.

Advertisement

Answer

Update for July 2022

This was fixed and will be in the next release of PyPDF2!


Original Answer

It seems this is caused by bad destination syntax in the outline of one of the PDFs you’re trying to combine.

If you don’t care about the outline, you should be able to get around this by updating import_bookmarks kwarg to False in PdfFileMerger.append, like this:

JavaScript

More detail

PdfFileMerger.append calls PdfFileMerger.merge and passes the import_bookmarks kwarg to it. By default this is set to True.

In PyPDF2.generic, the Destination class is raising this error during initialization. The Merger is trying to build destinations into the new outline by reading them from the original outlines.

JavaScript

Since the destination type “0” isn’t a valid type according to PDF Reference 1.7, it raises an error.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement