Layout multiple pages per sheet of a PDF document.
Project description
Pdfnup is a Python module and command-line tool for layouting multiple pages per sheet of a PDF document. Using it you can take a PDF document and create a new PDF document from it where each page contains a number of minimized pages from the original PDF file.
Right now pdfnup should be used on documents with all pages the same size, and half square page numbers per sheet work best on paper sizes of the ISO A series.
Basically, pdfnup wrapps pyPdf, a package written by Mathieu Fenniak, which does not provide tools like this for using the core functionality easily from the command-line or from a Python module. Pdfnup itself was much inspired from some code written by Henning von Bargen - thanks, Henning!
This release provides full support for file objects and StringIO objects for input as well as output documents and fixes a nasty buglet in the command-line invocation script.
Features
save minimized pages of a given PDF document in a new PDF document
place n pages per sheet, with n being square or half square
customize layout order, both horizontally and vertically
turn rotated pages to make them all have the same format
allow patterns for output files
supports file-like objects for input and output documents
install a Python module named pdfnup.py
install a Python command-line script named pdfnup
provide a Unittest test suite
Examples
You can use pdfnup as a Python module e.g. like in the following interactive Python session:
>>> from pdfnup import generateNup >>> >>> generateNup("file.pdf", 8, verbose=True) written: file-8up.pdf >>> >>> generateNup("file.pdf", 8, dirs="LD", verbose=True) written: file-8up.pdf >>> >>> f = open("file.pdf") >>> generateNup(f, 8, outPathPatternOrFile="out-%(n)dup.pdf", verbose=True) written: out-8up.pdf
In addition there is a script named pdfnup, which can be used more easily from the system command-line like this (you can see many more examples when typing pdfnup -h on the command-line):
$ pdfnup -V file.pdf written: file-4up.pdf $ pdfnup -V -n 8 file.pdf written: file-8up.pdf $ pdfnup -V -n 8 -l LD file.pdf written: file-8up.pdf $ pdfnup -V -n 9 /path/file[12].pdf written: /path/file1-9up.pdf written: /path/file2-9up.pdf $ pdfnup -V -n 8 -o "%(dirname)s/foo.pdf" /path/file.pdf written: /path/foo.pdf
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pdfnup3-1.0.0.tar.gz
.
File metadata
- Download URL: pdfnup3-1.0.0.tar.gz
- Upload date:
- Size: 58.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39c423d1c6d4adc269fbc600c309da9bbd2e4aa28d36e4e041a4080247a67c4b |
|
MD5 | 96f2727447f4c41aad93dd2b5b21ec5b |
|
BLAKE2b-256 | 51004d475e03c99c0f5ee70a5d10cdea7c0dd630918bb35821a4b31b68508efa |
File details
Details for the file pdfnup3-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: pdfnup3-1.0.0-py3-none-any.whl
- Upload date:
- Size: 20.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee3ec5f6b184bb515bd93154d4d77b766ba5f1e1a9053da67168e6a1da49c226 |
|
MD5 | aec44719df92e44d04d16176fed075c7 |
|
BLAKE2b-256 | ba413f5162aee05cda42fcb417337a79d65aa6637f01bf4169903732b7d10876 |