Skip to main content

Read and write Netpbm files

Project description

Netpbmfile is a Python library to read and write image files in the Netpbm format as specified at http://netpbm.sourceforge.net/doc/.

The following Netpbm and Portable FloatMap formats are supported:

  • PBM (bi-level)

  • PGM (grayscale)

  • PPM (color)

  • PAM (arbitrary)

  • XV thumbnail (RGB332, read-only)

  • Pf (float32 grayscale, read-only)

  • PF (float32 RGB, read-only)

  • PF4 (float32 RGBA, read-only)

  • PGX (signed grayscale, read-only)

No gamma correction is performed. Only one image per file is supported.

The PGX format is specified in ITU-T Rec. T.803.

Author:

Christoph Gohlke

Organization:

Laboratory for Fluorescence Dynamics, University of California, Irvine

License:

BSD 3-Clause

Version:

2022.2.2

Requirements

This release has been tested with the following requirements and dependencies (other versions may work):

Revisions

2022.2.2

Add type hints. Support reading PF4 RGBA FloatMaps. Drop support for Python 3.7 and numpy < 1.19 (NEP29).

2021.6.6

Fix unclosed file warnings. Support reading PGX JPEG2000 reference images.

2020.10.18

Disallow comments after last value in PNM headers.

2020.9.18

Remove support for Python 3.6 (NEP 29). Support os.PathLike file names.

2020.1.1

Fix reading tightly packed P1 format and ASCII data with inline comments. Remove support for Python 2.7 and 3.5. Update copyright.

2018.10.18

Move netpbmfile.py into netpbmfile package.

2018.02.18

Support reading Portable FloatMaps. Style fixes.

2016.02.24

Use ‘fromdata’ classmethod to initialize from data. Support ‘with’ statement. Scale RGB images to maxval for display. Make keyword arguments explicit. Support numpy 1.10.

Examples

Save a numpy array to a Netpbm file in grayscale format:

>>> data = numpy.array([[0, 1], [65534, 65535]], dtype='uint16')
>>> imwrite('_tmp.pgm', data)

Read the image data from a Netpbm file as numpy array:

>>> image = imread('_tmp.pgm')
>>> assert numpy.all(image == data)

Access meta and image data in a Netpbm file:

>>> with NetpbmFile('_tmp.pgm') as pgm:
...     pgm.axes
...     pgm.shape
...     pgm.dtype
...     pgm.maxval
...     pgm.magicnum
...     image = pgm.asarray()
'YX'
(2, 2)
dtype('>u2')
65535
b'P5'

To view the image stored in a Netpbm file from a command line, run python -m netpbmfile _tmp.pgm.

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

netpbmfile-2022.2.2.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

netpbmfile-2022.2.2-py3-none-any.whl (11.1 kB view details)

Uploaded Python 3

File details

Details for the file netpbmfile-2022.2.2.tar.gz.

File metadata

  • Download URL: netpbmfile-2022.2.2.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for netpbmfile-2022.2.2.tar.gz
Algorithm Hash digest
SHA256 97dbfac500e03b61a02cc76c4ca8946fb5a6f0b229be6dfe55237107651e447b
MD5 4986c7516e29da3a84d5a5ba6c44cf58
BLAKE2b-256 c3669452bee84d0c8a90d80d341e188511f1d892933946e1dfa31f4d5cf6dfd1

See more details on using hashes here.

File details

Details for the file netpbmfile-2022.2.2-py3-none-any.whl.

File metadata

  • Download URL: netpbmfile-2022.2.2-py3-none-any.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for netpbmfile-2022.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a8aeeb4ad0d79ee126537b6ac12a2142dec249c657c9adf9bc04795102638e3a
MD5 280f70c8d3860f6b64baa45a226d24f5
BLAKE2b-256 1e6ab98d117024d67f0599dfefe061d179b978c4d0aa101acb124861abce986d

See more details on using hashes here.

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