Skip to main content

Save pictures to PDF.

Project description

pytest coverage release license pyversions format downloads

Save pictures to PDF from the command line or from your Python programs.

Requirements

Installation

pip install pictureshow

Usage

As a command line tool

usage: pictureshow [-h] [-p SIZE] [-L] [-m MARGIN] [-l LAYOUT] [-s] [-f]
                   [-q | -v] [-V]
                   PIC [PIC ...] PDF

positional arguments:
  PIC                   one or more input picture file paths
  PDF                   target PDF file path

optional arguments:
  -h, --help            show this help message and exit
  -p SIZE, --page-size SIZE
                        specify page size; default is A4
  -L, --landscape       force landscape orientation of page
  -m MARGIN, --margin MARGIN
                        set width of empty space around pictures; default is
                        72 (72 points = 1 inch)
  -l LAYOUT, --layout LAYOUT
                        specify grid layout of pictures on page, e.g. 2x3 or
                        2,3; default is 1x1
  -s, --stretch-small   scale small pictures up to fit drawing area
  -f, --force-overwrite
                        save target file even if filename exists
  -q, --quiet           suppress printing to stdout
  -v, --verbose         provide details on files skipped due to error
  -V, --version         show program's version number and exit

Example 1

Save a single picture to PDF.

$ pictureshow pics/mandelbrot.png mandelbrot.pdf
Saved 1 picture (1 page) to 'mandelbrot.pdf'

Example 2

Save pictures using a glob pattern [1], set page to landscape Letter-sized [2].

$ pictureshow pics/plots/gauss* gauss.pdf --landscape --page-size=LETTER
Saved 2 pictures (2 pages) to 'gauss.pdf'

Example 3

Save pictures using a URL pattern, set layout of 1x2 pictures per page.

$ pictureshow -l1x2 https://wiki.openttd.org/uploads/en/Manual/Town-{2x2,3x3}.png towns.pdf
Saved 2 pictures (1 page) to 'towns.pdf'

As a Python library

Using the PictureShow class:

from pictureshow import PictureShow

pic_show = PictureShow('pics/mandelbrot.png', 'pics/mandelbrot.jpg')
pic_show.save_pdf('pictures.pdf')

Using the pictures_to_pdf shortcut function:

from pictureshow import pictures_to_pdf

list_of_pictures = ['pics/mandelbrot.png', 'pics/mandelbrot.jpg']
pictures_to_pdf(*list_of_pictures, pdf_file='pictures.pdf')

Please note that unlike the command line interface, pdf_file must be specified as a keyword argument.

Another example, demonstrating all available keyword-only arguments:

from pathlib import Path

from pictureshow import pictures_to_pdf

list_of_pictures = sorted(Path.cwd().glob('pics/blender/*'))
pictures_to_pdf(
    *list_of_pictures,
    pdf_file='3d_pics.pdf',
    page_size='A5',
    landscape=True,
    margin=18,
    layout=(3, 3),
    stretch_small=True,
    force_overwrite=True
)

Footnotes

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

pictureshow-0.6.4-py3-none-any.whl (8.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page