Windows – Batch crop PDF pages

croppdfwindows 7

I have a PDF document containing pages which have crop marks on them. I'd like to copy these pages to another PDF without the crop marks. I'm assuming I have to crop-out the crop marks but is there any way to do this in batch rather than interactively?

Best Answer

You can install ImageMagick to create a small batch script

example.bat:

convert yourpdf.pdf tempfile.png
convert -crop widthxheight+xoffset+yoffset *.png
convert *.png newpdf.pdf

This script temporarily convert the pdf pages into a series of images. Then crop all images (specify your width, height, x offset and y offset) Then reassembles all pages to new pdf file.

For more information about ImageMagick: http://www.imagemagick.org/script/command-line-processing.php

Related Question