0

I'm using pdfjam to resize a PDF to 90% of it's original size by doing pdfjam --scale 0.9 old.pdf --outfile new.pdf. The "problem" is that this 90% sized PDF is in the middle of the PDF. Is there a way this 90% sized PDF could be pushed down?

If pdftk or some other CLI based tool could be used to do this that'd be cool, too.

neubert
  • 15,947
  • 24
  • 120
  • 212

1 Answers1

0

pdfjam --scale 0.9 --offset '0in -0.5in' old.pdf --outfile new.pdf does the trick

neubert
  • 15,947
  • 24
  • 120
  • 212