pdfrw
pdfrw copied to clipboard
pdfrw is a pure Python library that reads and writes PDFs
I'm needing to take a file and add a blank page from scratch that's the same size as the rest of the pages in the file. What's the right way...
I have a pdf file with a fillable form. I fill out the form and save the file. I can view the file with any number of pdf viewer/editors and...
This PR updates an outdated link + mentions PyPDF2 (which is the only maintained version of pypdf). I've just noticed that the interface of PyPDF2>=1.28.0 became more similar to pdfrw...
Hello, I'm trying to use a PDF that contains "template" form pages, then use that PDF to create a new PDF with duplicate final pages, each having different form field...
I want to make a document using a TrueType font (.ttf). The font is not system, is in a separate file. How can I integrate it into the document? Changing...
Hi, I know in a previous comment you stated that PDFRW was "neglected", but it still seems like the perfect solution for me. Last thing I need to know is...
I've recently became the maintainer of PyPDF2. While it will take me some time to increase test coverage, merge/close PRs, deal with Github tickets (issues), I'm looking forward to a...
I have form fields in my PDF (that make it interactive - you can fill them and print with your data). I want to programatically fill those fields based on...
Fix for issue #230.
As described in [logging documentation for libraries](https://docs.python.org/3/howto/logging.html#configuring-logging-for-a-library), it is not recommended to use anything else than `logging.NullHandler()` when setting up logging. It is set up in [errors.py:14](https://github.com/pmaupin/pdfrw/blob/6c892160e7e976b243db0c12c3e56ed8c78afc5a/pdfrw/errors.py#L14) file and overwrites...