Skip to main content

Read and write Netpbm files

Project description

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

The following Netpbm formats are supported: PBM (bi-level), PGM (grayscale), PPM (color), PAM (arbitrary), XV thumbnail (RGB332, read-only). Also reads Portable FloatMap formats: PF (float32 RGB) and Pf (float32 grayscale).

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

Author:

Christoph Gohlke

Organization:

Laboratory for Fluorescence Dynamics, University of California, Irvine

Version:

2018.10.18

Requirements

Revisions

2018.10.18

Move netpbmfile.py into netpbmfile package.

2018.02.18

Support 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

>>> im1 = numpy.array([[0, 1], [65534, 65535]], dtype='uint16')
>>> imsave('_tmp.pgm', im1)
>>> im2 = imread('_tmp.pgm')
>>> assert numpy.all(im1 == im2)

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-2018.10.18.tar.gz (6.6 kB view hashes)

Uploaded Source

Built Distribution

netpbmfile-2018.10.18-py2.py3-none-any.whl (8.2 kB view hashes)

Uploaded Python 2 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