Quote:
Originally Posted by sachinwalia
if you have a PDF file with lot of white space around all the four corners I'd recommend you to crop it to make the experience better. Adobe acrobat does that but I don't know of any other tool.
|
You can use
ImageMagick (free program) to crop white space from a pdf. The command is something like:
convert -fuzz 15% -bordercolor white -trim input.pdf output.pdf
Or if you want to crop a lot of pdfs at once, copy all of them to another directory, open a command prompt in this new directory and run:
mogrify -fuzz 15% -bordercolor white -trim *.pdf