vote up 0 vote down star
1

I was wondering if anyone had any experience in working programmatically with .pdf files. I have a .pdf file and I need to crop every page down to a certain size.

After a quick Google search I found the pyPdf library for python but my experiments with it failed. When I changed the cropBox and trimBox attributes on a page object the results were not what I had expected and appeared to be quite random.

Has anyone had any experience with this? Code examples would be well appreciated, preferably in python.

flag

4 Answers

vote up 0 vote down check

pypdf does what I expect in this area. Using the following script:

#!/usr/bin/python
#

from pyPdf import PdfFileWriter, PdfFileReader

input1 = PdfFileReader(file("in.pdf", "rb"))
output = PdfFileWriter()

numPages = input1.getNumPages()
print "document has %s pages." % numPages

for page in range(numPages):
	page = input1.getPage(0)
	print page.mediaBox.getUpperRight_x(), page.mediaBox.getUpperRight_y()
	page.trimBox.lowerLeft = (25, 25)
	page.trimBox.upperRight = (225, 225)
	page.cropBox.lowerLeft = (50, 50)
	page.cropBox.upperRight = (200, 200)
	output.addPage(page)

outputStream = file("out.pdf", "wb")
output.write(outputStream)
outputStream.close()

The resulting document has a trim box that is 200x200 points and starts at 25,25 points inside the media box. The crop box is 25 points inside the trim box.

Here is how my sample document looks in acrobat professional after processing with the above code: crop pages screenshot This document will appear blank when loaded in acrobat reader.

link|flag
This code has the same effect as the code I was experimenting with; the pages of the resulting document were certainly cropped but all blank. Any ideas why that might be? – johannth Jan 22 at 20:26
You've probably checked this but all I can think is that you are cropping a small area of the PDF that is blank? If you have access to acrobat pro you can use the crop pages tool to show all the page boxes. I don't know of any free tools that can do this. Maybe evince or okular for linux? – danio Jan 23 at 14:21
I feel really stupid. I misread the api and assumed that the cropbox was upperLeft, lowerRight. So I was indeed just cropping to a blank part of the page. – johannth Jan 24 at 10:56
Easily done if you are used to working with screen co-ordinates with the origin at top-left. Took me a while to get used to having the origin at bottom-left in PDF but now I am so used to it I find it jarring to switch back to top-left for screen layout work! – danio Jan 26 at 11:23
vote up 0 vote down

Acrobat Javascript API has a setPageBoxes method, but Adobe doesn't provide any Python code samples. Only C++, C# and VB.

link|flag
vote up 0 vote down

You can convert the PDF to Postscript (pstopdf or ps2pdf) and than use text processing on the Postscript file. After that you can convert the output back to PDF.

This works nicely if the PDFs you want to process are all generated by the same application and are somewhat similar. If they come from different sources it is usually to hard to process the Postscript files - the structure is varying to much. But even than you migt be able to fix page sizes and the like with a few regular expressions.

link|flag
vote up 0 vote down

You are probably looking for a free solution, but if you have money to spend, PDFlib is a fabulous library. It has never disappointed me.

link|flag

Your Answer

Get an OpenID
or

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