Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 pdfjam 将 PDF 的大小调整为原始大小的 90% pdfjam --scale 0.9 old.pdf --outfile new.pdf。“问题”是这个 90% 大小的 PDF 位于 PDF 的中间。有没有办法将这个 90% 大小的 PDF 向下推?
pdfjam --scale 0.9 old.pdf --outfile new.pdf
如果可以使用 pdftk 或其他一些基于 CLI 的工具来执行此操作,那也很酷。
pdfjam --scale 0.9 --offset '0in -0.5in' old.pdf --outfile new.pdf成功了
pdfjam --scale 0.9 --offset '0in -0.5in' old.pdf --outfile new.pdf