旋转pdf文件的特定页面?


29

我有一个多页的pdf文件,我想将特定的页面顺时针旋转90度,以获得一个新的pdf文件,该文件具有与原始pdf相同的页面,但该特定页面已旋转。我怎样才能做到这一点?

Answers:


36

注意:此解决方案仅适用于17.10之前的Ubuntu版本。Ubuntu 18.04及更高版本不具有该pdftk软件包,这是因为从运行于Bionic及更高版本的存档中删除该软件包所依赖的软件包已被删除。

注2:即使从18.04正式删除,有一个卡扣版本pdftk; 您可以使用安装它snap install pdftk

您可以使用pdftk。使用进行安装sudo apt-get install pdftk。然后,假设您想将文档的页面4 test.pdf顺时针旋转90度:

pdftk test.pdf cat 1-3 4east 5-end output out.pdf 

您可以在中进行更多操作pdftk,更改页面顺序,旋转,合并各种PDF文件。手册页是您的朋友。

From man pdftk,指的是cat操作:

<input PDF handle>[<begin page number>[-<end page num‐ ber>[<qualifier>]]][<page rotation>]

             Where the handle identifies one of the input PDF files, and
             the beginning and ending page numbers are one-based refer‐
             ences to pages in the PDF file.  The qualifier can be even or
             odd, and the page rotation can be north, south, east, west,
             left, right, or down.

很高兴知道---我会pdftk按照askubuntu.com/a/546305/16395进行
Rmano


大约18.04:有pdftk可用的快照版本。参见bugs.launchpad.net/ubuntu/+source/pdftk/+bug/1764450/comments/…–
Rmano

4

您也可以使用pdfshuffler具有GUI界面的。您可以从http://sourceforge.net/projects/pdfshuffler/或使用ubuntu软件中心或突触软件包管理器下载它。

它允许完全执行所需的操作,如果需要多个页面,则可以以图形方式选择要旋转的页面。您还可以对页面进行裁剪和重新排序。


2

主PDF编辑器还能够旋转单个页面。同样在免费版本中(针对版本4.3.80)


1

也可以通过类似http://online-pdf.org的网站来实现,我认为您需要上传两次文件,其中一个选择要旋转的页面,另一个选择其余的页面。您的选择应该在此之后合并。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.