当前位置: 首页>>技术教程>>正文


旋转pdf文件的特定页面?

问题描述

我有一个 multi-page pdf 文件,我想将特定页面顺时针旋转 90 度,以获取与原始 pdf 具有相同页面但旋转此特定页面的新 pdf 文件。\n我该怎么做?

最佳答案

\\n

NOTE: This solution only works for Ubuntu versions up through 17.10. Ubuntu 18.04 and later do not have the pdftk package due to the packages being removed due to the dependencies to run the package being removed from the Archive for Bionic and later.

\\n

\\n

NOTE2: even if officially removed from 18.04, there is a snap version of pdftk; you can install it with snap install pdftk.

\\n

\\n

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

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

您可以在 pdftk 中做更多事情,更改页面顺序、旋转、合并各种 PDF 文件。手册页是您的朋友。

来自 man pdftk ,指的是 cat 操作:

\\n

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

\\n

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

\\n

次佳答案

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

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

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/12971.html,未经允许,请勿转载。