Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andremiras/rotatepdf

Rotate pdf pages from command line.
https://github.com/andremiras/rotatepdf

Last synced: about 2 months ago
JSON representation

Rotate pdf pages from command line.

Awesome Lists containing this project

README

        

# rotatepdf
Rotate pdf pages from command line.

## How to use
Here is an example for rotating page 1 to page 3 by 90 degrees clockwise.
```shell
$ rotatepdf.py --src src.pdf --dst dst.pdf --rotate-right 1-3
```
It's also possible to rotate in multiple ways in one go.
```shell
$ rotatepdf.py --src src.pdf --dst dst.pdf --rotate-right 1-3 --rotate-180 4-10
```

## Installing
```shell
$ pip install -e git://github.com/AndreMiras/rotatepdf.git#egg=rotatepdf
```