Issue
How can I easily crop a PDF page in a given PDF file? I prefer using as little coding as possible, and guess border geometries as little as possible...
Solution
There are several options:
- Crop by point-and-click using a GUI front-end:
- 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:
Answered By - Sparkler Answer Checked By - Marilyn (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.