ppc64le/linux/: imageio-2.37.2+ppc64le1 metadata and description

Simple index

Read and write images and video across all major formats. Supports scientific and volumetric data.

author ImageIO contributors
classifiers
  • Development Status :: 5 - Production/Stable
  • Intended Audience :: Science/Research
  • Intended Audience :: Education
  • Intended Audience :: Developers
  • Operating System :: MacOS :: MacOS X
  • Operating System :: Microsoft :: Windows
  • Operating System :: POSIX
  • Programming Language :: Python :: 3
  • Programming Language :: Python :: 3.10
  • Programming Language :: Python :: 3.11
  • Programming Language :: Python :: 3.12
  • Programming Language :: Python :: 3.13
  • Programming Language :: Python :: 3.14
  • Environment :: MetaData :: IBM Python Ecosystem
description_content_type text/x-rst
dynamic
  • license-file
keywords image,video,imread,imwrite,io,animation,ffmpeg,image processing,numpy,format conversion,scientific imaging,medical imaging,volumetric,video encoding,multimedia,gif,tiff,png,jpeg
license_expression BSD-2-Clause
license_file
  • LICENSE
maintainer_email Sebastian Wallkotter <sebastian@wallkoetter.net>, Almar Klein <almar.klein@gmail.com>
project_urls
  • homepage, https://github.com/imageio/imageio
  • download, http://pypi.python.org/pypi/imageio
  • source, https://github.com/imageio/imageio
  • documentation, https://imageio.readthedocs.io
provides_extras
  • bsdf
  • dicom
  • feisem
  • ffmpeg
  • freeimage
  • lytro
  • numpy
  • pillow-heif
  • pillow
  • simpleitk
  • spe
  • swf
  • tifffile
  • pyav
  • fits
  • rawpy
  • gdal
  • itk
  • linting
  • test
  • docs
  • dev
  • all-plugins
  • all-plugins-pypy
  • full
requires_dist
  • numpy
  • pillow>=8.3.2
  • imageio-ffmpeg; extra == "ffmpeg"
  • psutil; extra == "ffmpeg"
  • fsspec[http]; extra == "freeimage"
  • pillow-heif; extra == "pillow-heif"
  • tifffile; extra == "tifffile"
  • av; extra == "pyav"
  • astropy; extra == "fits"
  • rawpy; extra == "rawpy"
  • numpy>2; extra == "rawpy"
  • gdal; extra == "gdal"
  • itk; extra == "itk"
  • black; extra == "linting"
  • flake8; extra == "linting"
  • pytest; extra == "test"
  • pytest-cov; extra == "test"
  • fsspec[github]; extra == "test"
  • sphinx<6; extra == "docs"
  • numpydoc; extra == "docs"
  • pydata-sphinx-theme; extra == "docs"
  • pytest; extra == "dev"
  • pytest-cov; extra == "dev"
  • fsspec[github]; extra == "dev"
  • black; extra == "dev"
  • flake8; extra == "dev"
  • av; extra == "all-plugins"
  • astropy; extra == "all-plugins"
  • fsspec[http]; extra == "all-plugins"
  • imageio-ffmpeg; extra == "all-plugins"
  • numpy>2; extra == "all-plugins"
  • pillow-heif; extra == "all-plugins"
  • psutil; extra == "all-plugins"
  • rawpy; extra == "all-plugins"
  • tifffile; extra == "all-plugins"
  • fsspec[http]; extra == "all-plugins-pypy"
  • imageio-ffmpeg; extra == "all-plugins-pypy"
  • pillow-heif; extra == "all-plugins-pypy"
  • psutil; extra == "all-plugins-pypy"
  • tifffile; extra == "all-plugins-pypy"
  • astropy; extra == "full"
  • av; extra == "full"
  • black; extra == "full"
  • flake8; extra == "full"
  • fsspec[github,http]; extra == "full"
  • imageio-ffmpeg; extra == "full"
  • numpydoc; extra == "full"
  • numpy>2; extra == "full"
  • pillow-heif; extra == "full"
  • psutil; extra == "full"
  • pydata-sphinx-theme; extra == "full"
  • pytest; extra == "full"
  • pytest-cov; extra == "full"
  • rawpy; extra == "full"
  • sphinx<6; extra == "full"
  • tifffile; extra == "full"
requires_python >=3.9
File Tox results History
imageio-2.37.2+ppc64le1-py3-none-any.whl
Size
310 KB
Type
Python Wheel
Python
3
  • Replaced 1 time(s)
  • Uploaded to ppc64le/linux by ppc64le 2026-05-05 15:37:49

# IMAGEIO

[![CI](https://github.com/imageio/imageio/workflows/CI/badge.svg)](https://github.com/imageio/imageio/actions/workflows/ci.yml) [![CD](https://github.com/imageio/imageio/workflows/CD/badge.svg)](https://github.com/imageio/imageio/actions/workflows/cd.yml) [![codecov](https://codecov.io/gh/imageio/imageio/branch/master/graph/badge.svg?token=81Zhu9MDec)](https://codecov.io/gh/imageio/imageio) [![Docs](https://readthedocs.org/projects/imageio/badge/?version=latest)](https://imageio.readthedocs.io)

[![Supported Python Versions](https://img.shields.io/pypi/pyversions/imageio.svg)](https://pypi.python.org/pypi/imageio/) [![PyPI Version](https://img.shields.io/pypi/v/imageio.svg)](https://pypi.python.org/pypi/imageio/) ![PyPI Downloads](https://img.shields.io/pypi/dm/imageio?color=blue) [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1488561.svg)](https://doi.org/10.5281/zenodo.1488561)

Website: <https://imageio.readthedocs.io/>

Imageio is a mature Python library that makes it easy to read and write image and video data. This includes animated images, video, volumetric data, and scientific formats. It is cross-platform, runs on Python 3.9+, and is easy to install.

Professional support is available via [Tidelift](https://tidelift.com/funding/github/pypi/imageio).

## Example

Here’s a minimal example of how to use imageio. See the docs for [more examples](https://imageio.readthedocs.io/en/stable/examples.html).

`python import imageio.v3 as iio im = iio.imread('imageio:chelsea.png') # read a standard image im.shape # im is a NumPy array of shape (300, 451, 3) iio.imwrite('chelsea.jpg', im) # convert to jpg `

## API in a nutshell

You just have to remember a handful of functions:

`python imread() # for reading imwrite() # for writing imiter() # for iterating image series (animations/videos/OME-TIFF/...) improps() # for standardized metadata immeta() # for format-specific metadata imopen() # for advanced usage `

See the [API docs](https://imageio.readthedocs.io/en/stable/reference/index.html) for more information.

## Features

## Dependencies

Minimal requirements:

Optional Python packages:

## Security contact information

To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure.

## ImageIO for enterprise

Available as part of the Tidelift Subscription.

The maintainers of imageio and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. ([Learn more](https://tidelift.com/subscription/pkg/pypi-imageio?utm_source=pypi-imageio&utm_medium=referral&utm_campaign=readme))

## Details

The core of ImageIO is a set of user-facing APIs combined with a plugin manager. API calls choose sensible defaults and then call the plugin manager, which deduces the correct plugin/backend to use for the given resource and file format. The plugin manager adds sensible backend-specific defaults and then calls one of ImageIOs many backends to perform the actual loading. This allows ImageIO to take care of most of the gory details of loading images for you, while still allowing you to customize the behavior when and where you need to. You can find a more detailed explanation of this process in [our documentation](https://imageio.readthedocs.io/en/stable/user_guide/overview.html).

## Contributing

We welcome contributions of any kind. Here are some suggestions on how you are able to contribute

To assist you in getting started with contributing code, take a look at the [development section](https://imageio.readthedocs.io/en/stable/development/index.html) of the docs. You will find instructions on setting up the dev environment as well as examples on how to contribute code.

Export Classification Notice

The software hosted on this website consists of publicly available open‑source packages. To the extent U.S. export regulations apply, software that is publicly available as described in 15 C.F.R. §§ 734.7 (for non-encryption software) or 742.15(b) (for encryption software) is not subject to the Export Administration Regulations (EAR). Users are responsible for complying with all applicable export laws and regulations.