How can I easily crop a PDF page?
For quick, GUI-aided PDF cropping tasks, try pdfarranger (available in Debian repos, formerly known as PDF-Shuffler).
There are several options:
- Crop by point-and-click using a GUI front-end:
- pdf-quench
- krop
- briss
- PDF scissors
- Crop by using the command line:
pdfcrop
command (provided by texlive-extra-utils), using the following arguments:pdfcrop --margins '-30 -30 -250 -150' --clip input.pdf output.pdf
(-left -top -right -bottom format).- PDFCrop
convert -crop
command (provided by imagemagick)- Ghostscript
- Crop by writing your own script:
- Python
- LaTeX