In Linux, there is a simple command to solve this problem. For example, assume your file is called ``ort.pdf''. Then you can remove the white margins using this simple command:
$pdfcrop ort.pdf
If you need to apply this crop operation to many pdf files, then you can use the following tiny script to automate:
$for file in `ls *.pdf`; do pdfcrop $file; done
1 comment:
Thank you very much! These small tools is one of the main reasons I love linux.
Post a Comment