Skip to content Skip to sidebar Skip to footer

Pypdf Merge And Write Issue

I am getting an unexpected error when using this. The first section is from a script that I found online, and I am trying to use it to pull a particular section identified in the P

Solution 1:

I know it might be too late for you, but for anyone else who will stumble here to look for the answer: I had the same problem today, setting:

export_reader = PdfFileReader(filename, strict=False)

If you are just merging, then use:

merger = PdfFileMerger(strict=False)

This way, you will get only a warning, rather than an exception.

Post a Comment for "Pypdf Merge And Write Issue"