pypdf icon indicating copy to clipboard operation
pypdf copied to clipboard

A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files

Results 217 pypdf issues
Sort by recently updated
recently updated
newest added

Fixes #2428 Imho, the test does too many things. Thus, instead of replacing with e.g. `txt_file_path fixture`, I removed things: - write to file: The written file is never used....

Updates the _writer.py to create the /DR and /Font dictionaries, and add a font (Helvetica) if they don't exist. This enables filling out PDF forms. Response to issue #2670

I am trying to fill out a PDF form, but running into an issue where the /Font dictionary is not populated, so nothing can be written to the PDF. ##...

workflow-forms

## Explanation Make PdfReader more pythonic by using the 'with' 'as' context. ## Code Example ``` from PyPDF2 import PdfReader total_text = "" pdf_file_path = "example/path" # Replace with your...

PdfReader

## Explanation IMHO `pypdf` deserves that the `is_encrypted` property be completed by `is_signed` (Digitally signed). ## Code Example How would your feature be used? (Remove this if it is not...

is-feature

## Explanation I'm not sure if this is a request for a new feature or documentation to explain how this is already possible... My knowledge of PDF internal format is...

is-question
workflow-annotation