PyPDF4 icon indicating copy to clipboard operation
PyPDF4 copied to clipboard

A utility to read and write PDFs with Python

Results 50 PyPDF4 issues
Sort by recently updated
recently updated
newest added

I have the following file: [zen_of_python_corrupted.pdf](https://github.com/claird/PyPDF4/files/2926503/zen_of_python_corrupted.pdf) According to the PDF's internal code the text content is somehow corrupted/compressed/differently encoded. However it works fine when opened with a PDF viewer. Now...

See [PyPDF2](https://github.com/mstamy2/PyPDF2/issues/226). This version of encryption has still not been implemented. I see several workaround solutions such as use pikepdf to open and save the file, but to have a...

import os from PyPDF4 import PdfFileReader, PdfFileMerger from PIL import Image from PIL import ImageFile import argparse import string import collections def png_to_pdf(): merger = PdfFileMerger() merger.append(PdfFileReader(open('C:\\file-0.pdf', 'rb'))) def main():...

Would it be possible to put a wheel on PyPi for this project? This was recommended to me here: https://github.com/pyodide/pyodide/discussions/2056 I'd like to try to use PyPDF4 in a project...

Was taking this module for a trial run and found the sample code wasn't working. PR to resolve the error. ### Repro: - run the recommend command from the repo...

Just found this fork/project after logging https://github.com/mstamy2/PyPDF3/issues/13 test case below is for PyPDF4. I've seen a number of PDF files where the `title` attribute/property is reported as None but when...

PyPDF4 is dead: * [Last release on PyPI](https://pypi.org/project/PyPDF4/#history): 2018 * Last commit in this repo: 2020 * Last response to an issue: ... I couldn't find any I suggest to...

As PyPDF2 is maintained again (I'm the new maintainer) and it seems like PyPDF4 still is way smaller, I'd be happy if the two communities merged together again. I'm still...

The attached code causes an exception when it executes the `output.write(outfile)` statement at line 58. The program appears to work with PyPDF2. The zip file also includes a data file...

bug

There are some errors in some cases during zlib decompression (eg. I have a PDF with overlay of text, it is the same issue which is documented here https://github.com/mstamy2/PyPDF2/issues/422 )....