vote up 0 vote down star
1

Hi,
I need to add some extra text to an existing PDF using Python, what is the best way to go about this and what extra modules will I need to install.

Note: Ideally I would like to be able to run this on both Windows and Linux, but at a push Linux only will do.

Thanks in advance.
Richard.

Edit: pyPDF and ReportLab look good but neither one will allow me to edit an existing PDF, are there any other options?

flag

3 Answers

vote up 1 vote down check

Have you tried pyPdf ?

Sorry, it doesn’t have the ability to modify a page’s content.

link|flag
Looks like that might work, has anyone used it? What's the memory usage like? – Frozenskys Jul 24 at 21:17
It does have the ability to add a text watermark and if it was formatted properly it might work. – Frozenskys Jul 24 at 21:24
vote up 0 vote down

You may have better luck breaking the problem down into converting PDF into an editable format, writing your changes, then converting it back into PDF. I don't know of a library that lets you directly edit PDF but there are plenty of converters between DOC and PDF for example.

link|flag
Problem is that I only have the source in PDF (from a 3rd party) and PDF -> DOC -> PDF will lose a lot in the conversion. Also I need this to run on Linux so DOC may not be the best choice. – Frozenskys Jul 24 at 21:08
I believe Adobe keeps PDF editing capability pretty closed and proprietary so that they can sell licenses for their better versions of Acrobat. Maybe you can find a way to automate the usage of Acrobat Pro to edit it, using some kind of macro interface. – Wahnfrieden Jul 24 at 21:14
If the parts you want to write to are form fields, there are XML interfaces to editing them - otherwise I can't find anything. – Wahnfrieden Jul 24 at 21:15
No I just wanted to add a few lines of text to each page. – Frozenskys Jul 24 at 21:25
vote up 0 vote down

If you're on Windows, this might work:

PDF Creator Pilot

There's also a whitepaper of a PDF creation and editing framework in Python. It's a little dated, but maybe can give you some useful info:

Using Python as PDF Editing and Processing Framework

link|flag
The white paper looks good but is a little light on code, and I don't really have the resource to implement a whole PDF framework myself! ;) – Frozenskys Jul 24 at 21:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.