Skip to main content

Save pictures to PDF.

Project description

test-build-publish coverage pre-commit.ci pre-commit bandit release pyversions

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

Installation

pip install pictureshow

Usage

As a command line tool

usage: pictureshow [options] PICTURE [PICTURE ...] -o PATH

positional arguments:
  PICTURE               one or more input file paths

options:
  -h, --help            show this help message and exit
  -V, --version         show program's version number and exit
  -q, --quiet           do not print output to stdout
  -v, --verbose         show details of input files skipped due to error
  -F, --fail MODE       control the exit code: 'skipped' exits with code 2 if
                        at least one input file was skipped due to an error;
                        'no-output' (default) exits with code 2 if all files
                        were skipped and no PDF file was saved; 'no' exits
                        with code 0 even if all files were skipped

output file options:
  -o, --output-file PATH
                        path of the output PDF file (required)
  -f, --force-overwrite
                        save to output file path even if file exists

page properties options:
  -p, --page-size SIZE  specify page size; default is A4 (available sizes: A0,
                        A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, B0, B1, B2,
                        B3, B4, B5, B6, B7, B8, B9, B10, C0, C1, C2, C3, C4,
                        C5, C6, C7, C8, C9, C10, LETTER, LEGAL,
                        ELEVENSEVENTEEN, JUNIOR_LEGAL, HALF_LETTER,
                        GOV_LETTER, GOV_LEGAL, TABLOID, LEDGER)
  -L, --landscape       set landscape orientation of pages
  -b, --bg-color COLOR  specify page background color as 6-digit hexadecimal
                        RGB, e.g. ff8c00

picture layout options:
  -l, --layout LAYOUT   specify grid layout (columns x rows) of pictures on
                        page, e.g. 2x3 or 2,3; default is 1x1
  -m, --margin MARGIN   set width of empty space around the cells containing
                        pictures; default is 72 (72 points = 1 inch)
  -s, --stretch-small   scale small pictures up to fit cells
  -c, --fill-cell       fill cells with pictures, ignoring the pictures'
                        aspect ratio

Examples

Save single picture to PDF:

$ pictureshow pics/potato.jpg -o potato.pdf
.
Saved 1 picture (1 page) to 'potato.pdf'

Save multiple pictures, four pictures per page (two columns, two rows), set page orientation to landscape:

$ pictureshow -l 2x2 -L vegetables/* -o vegetables
..................................................
Saved 50 pictures (13 pages) to 'vegetables.pdf'

(Please note that if the output filename has no extension specified, .pdf will be appended to it. This only applies for the command line tool.)

You can also save pictures from URLs:

$ pictureshow https://httpbin.org/image/jpeg https://httpbin.org/image/png -o pics
..
Saved 2 pictures (2 pages) to 'pics.pdf'

But please note that this feature is not tested and depends solely on the underlying reportlab backend.

As a Python library

Using the PictureShow class

Example:

from pictureshow import PictureShow

pictures = PictureShow(
    'pics/cucumber.jpg',
    'pics/onion.jpg',
)
pictures.save_pdf('vegetables.pdf')

The customization parameters of the save_pdf method are keyword-only and their default values correspond to the above shown command line options:

PictureShow.save_pdf(
    output_file,
    *,
    force_overwrite=False,
    page_size='A4',
    landscape=False,
    bg_color=None,
    layout=(1, 1),
    margin=72,
    stretch_small=False,
    fill_cell=False,
)

Using the pictures_to_pdf shortcut function

Example:

from pictureshow import pictures_to_pdf

pictures_to_pdf(
    'pics/cucumber.jpg',
    'pics/onion.jpg',
    output_file='vegetables.pdf',
)

The customization parameters of the pictures_to_pdf function are keyword-only and their default values correspond to the above shown command line options:

pictures_to_pdf(
    *pic_files,
    output_file,
    force_overwrite=False,
    page_size='A4',
    landscape=False,
    bg_color=None,
    layout=(1, 1),
    margin=72,
    stretch_small=False,
    fill_cell=False,
)

Project details


Download files

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

Source Distribution

pictureshow-0.14.0.tar.gz (8.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pictureshow-0.14.0-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file pictureshow-0.14.0.tar.gz.

File metadata

  • Download URL: pictureshow-0.14.0.tar.gz
  • Upload date:
  • Size: 8.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pictureshow-0.14.0.tar.gz
Algorithm Hash digest
SHA256 b2e493c1ab186fef58c68aee2604dee652ee0a5089c21d0704c1a1adb8b5886a
MD5 e2e7ea9c3811e5872be227e78fd02733
BLAKE2b-256 39e30ec8a743c07483f84b2eee8b01b663eeb1871cbf7c61577c8c0afef36870

See more details on using hashes here.

Provenance

The following attestation bundles were made for pictureshow-0.14.0.tar.gz:

Publisher: test-build-publish.yml on mportesdev/pictureshow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pictureshow-0.14.0-py3-none-any.whl.

File metadata

  • Download URL: pictureshow-0.14.0-py3-none-any.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pictureshow-0.14.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b4e744b4d1f12a4a7abd1c1d17043bd78d5783f3c1df04c0308906beb7d12746
MD5 af6d582bea787aa200b87d38edc61a7a
BLAKE2b-256 043d6a20a330fd2f32064ebfc453fa047bc95afb20df2bc0fadafe1617642bd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pictureshow-0.14.0-py3-none-any.whl:

Publisher: test-build-publish.yml on mportesdev/pictureshow

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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