Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/andremiras/rotatepdf
- Owner: AndreMiras
- License: mit
- Created: 2015-04-19T16:00:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-04-24T14:16:17.000Z (over 9 years ago)
- Last Synced: 2024-10-27T07:30:02.393Z (about 2 months ago)
- Language: Python
- Size: 137 KB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```