skillfed

OpenImageIO

Reading, writing, and processing images in a wide variety of file formats, using a format-agnostic API, aimed at VFX applications.

openimageio v3.1.16.0 136.9K downloads/30d#11,382 on PyPI2,345
Permissive license Apache-2.0 Active released

What it is and what it does

OpenImageIO is a production-grade image I/O library designed for VFX and animation pipelines. It abstracts away the complexity of reading and writing image files across dozens of formats—TIFF, JPEG, OpenEXR, PNG, JPEG XL, DPX, Cineon, and many others—through a single, format-agnostic API. The library uses a plugin architecture so that format support can be extended at runtime without recompilation.

Beyond basic I/O, it includes ImageCache for efficient memory-managed access to large image collections, TextureSystem for filtered MIP-map texture lookups (used in commercial renderers), and ImageBuf/ImageBufAlgo for in-memory image manipulation and processing. Python bindings expose all major APIs, making it accessible to both C++ and Python workflows. The package is actively maintained by the Academy Software Foundation and targets modern Python versions (3.9–3.14).

Use it for:

  • Convert images between formats (e.g., TIFF to EXR) without writing format-specific code.
  • Build a VFX compositor or renderer that needs to read and write multiple image formats transparently.
  • Efficiently cache and access thousands of image files in memory while keeping runtime memory usage low.
  • Perform image processing operations (scaling, color space conversion, metadata manipulation) on in-memory image buffers.
  • Query detailed metadata and image properties (resolution, bit depth, color space) from any supported format.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

OpenImageIO reads, writes, and processes images in nearly any file format via a format-agnostic API, with support for VFX-production image types including EXR, TIFF, JPEG, PNG, and many others through a plugin architecture.

Yes. OpenImageIO is a mature, actively maintained library with no known vulnerabilities, permissive licensing, and broad format support essential for VFX workflows. Medium install friction is typical for compiled image libraries. Install if you need robust, production-grade image I/O across multiple formats; avoid only if your use case is limited to a single format or if you need pure-Python implementation.

Install

openimageio on PyPI

pip

pip install openimageio

uv

uv add openimageio

poetry

poetry add openimageio

Installing OpenImageIO

Before you install

Medium install friction due to compiled wheel distribution across multiple Python versions (3.9–3.14) and platforms (macOS, Linux, Windows). Active maintenance with a release 13 days ago and regular monthly updates signal ongoing support.

License in practice

Apache-2.0 permissive license allows commercial and private use with minimal restrictions; over 99.86% of the codebase has been relicensed to Apache-2.0 from the original BSD-3-clause.

Quickstart

pip install openimageio
import OpenImageIO
buf = OpenImageIO.ImageBuf('image.exr')
print(buf.spec())

Requires numpy as a runtime dependency; compiled wheels target specific Python minor versions (3.9–3.14) and CPU architectures.

Verify before relying

  • Whether the plugin architecture requires additional runtime configuration or environment variables to discover format handlers.
  • Performance characteristics and memory overhead when working with very large image files or thousands of images via ImageCache.
  • Completeness of Python bindings for all major C++ APIs mentioned in the description.

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (>=3.9)
Install friction medium — platform-specific wheel
Runtime dependencies 1 — numpy
Maintenance actively maintained — 13 days since the last release
Last repo commit
First released
Downloads 136,901/month — #11,382 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: openimageio-3.1.16.0-cp310-cp310-macosx_10_15_x86_64.whl; openimageio-3.1.16.0-cp310-cp310-macosx_11_0_arm64.whl; openimageio-3.1.16.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl; openimageio-3.1.16.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl; openimageio-3.1.16.0-cp310-cp310-win_amd64.whl; openimageio-3.1.16.0-cp311-cp311-macosx_10_15_x86_64.whl; openimageio-3.1.16.0-cp311-cp311-macosx_11_0_arm64.whl; openimageio-3.1.16.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl; openimageio-3.1.16.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl; openimageio-3.1.16.0-cp311-cp311-win_amd64.whl; openimageio-3.1.16.0-cp312-cp312-macosx_10_15_x86_64.whl; openimageio-3.1.16.0-cp312-cp312-macosx_11_0_arm64.whl; openimageio-3.1.16.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl; openimageio-3.1.16.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl; openimageio-3.1.16.0-cp312-cp312-win_amd64.whl; openimageio-3.1.16.0-cp313-cp313-macosx_10_15_x86_64.whl; openimageio-3.1.16.0-cp313-cp313-macosx_11_0_arm64.whl; openimageio-3.1.16.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl; openimageio-3.1.16.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl; openimageio-3.1.16.0-cp313-cp313-win_amd64.whl

License :: OSI Approved :: Apache Software LicenseNatural Language :: EnglishOperating System :: OS IndependentProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Programming Language :: Python :: 3.9Topic :: Multimedia :: GraphicsTopic :: Multimedia :: VideoTopic :: Multimedia :: Video :: DisplayTopic :: Software Development :: Libraries :: Python Modules

Tags

image file format conversionread write image files pythonvfx image processing librarymulti-format image ioexr tiff jpeg png handling
vfx-pipelineimage-ioformat-agnostic

More Python Modules packages