IT/Software/Command Line Applications/PDF Tools: Difference between revisions
Access restrictions were established for this page. If you see this message, you have no access to this page.
Walttheboss (talk | contribs) No edit summary |
Walttheboss (talk | contribs) No edit summary |
||
Line 8: | Line 8: | ||
Example: Create a pdf for printing with margins of 1 cm on left by pushing document to the right. | Example: Create a pdf for printing with margins of 1 cm on left by pushing document to the right. | ||
pdfjam --twoside 20.pdf --offset '1cm 0cm' --suffix 'offset'Example | <code>pdfjam --twoside 20.pdf --offset '1cm 0cm' --suffix 'offset'Example</code> | ||
<br /> | <br /> |
Revision as of 06:32, 1 June 2020
Here is a short list of the many many pdf tools in the Linux toolbox
pdftk has been around for ever.
pdfcrop
pdfjam
Example: Create a pdf for printing with margins of 1 cm on left by pushing document to the right.
pdfjam --twoside 20.pdf --offset '1cm 0cm' --suffix 'offset'Example