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.NOTE2: even if officially removed from 18.04, there is a snap version of
pdftk
; you can install it withsnap install pdftk
.
Você pode usar pdftk
. Instale-o com sudo apt-get install pdftk
. Então, suponha que você queira girar a página 4 do seu documento test.pdf
90 graus no sentido horário:
pdftk test.pdf cat 1-3 4east 5-end output out.pdf
Você pode fazer muito mais em pdftk
, alterando a ordem das páginas, a rotação e mesclando vários arquivos PDF. A página de manual é sua amiga aqui.
De man pdftk
, referente à operação 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.