pdfcpu

Logo

A PDF processor written in Go.

View the Project on GitHub pdfcpu/pdfcpu


Changelog

Rotate

Rotate selected pages of inFile clockwise by a multiple of 90 degrees. Have a look at some examples.

Usage

pdfcpu rotate inFile rotation [outFile] [flags]

Flags

namedescriptionrequired
p(ages)selected pagesno

Common Flags


Arguments

namedescriptionrequiredvalues
inFilePDF input fileyes
rotationrotation angleyes-270, -180, -90, 90, 180, 270
outFilePDF output fileno

Examples

Rotate all pages of a PDF file clockwise by 90 degrees:

$ pdfcpu rotate test.pdf 90

Rotate the first two pages counter clockwise by 90 degrees:
$ pdfcpu rotate --pages 1-2 test.pdf -90