EXRS
This library is a 100% Rust and 100% safe code library for reading and writing OpenEXR images.
OpenEXR is the de-facto standard image format in animation, VFX, and other computer graphics pipelines, for it can represent an immense variety of pixel data with lossless compression.
Features include:
- any number of layers placed anywhere in 2d space, like in Photoshop
- any set of channels in an image (rgb, xyz, lab, depth, motion, mask, anything, ...)
- three types of high dynamic range values (16bit float, 32bit float, 32bit unsigned integer) per channel
- uncompressed pixel data for fast file access
- lossless compression for any image type
- lossy compression for non-deep image types to produce very small files
- load specific sections of an image without processing the whole file
- compress and decompress image pixels on multiple threads in parallel
- add arbitrary meta data to any image, including custom byte data, with full backwards compatibility
- any number of samples per pixel ("deep data") (not yet supported)
Current Status
This library has matured quite a bit, but should still be considered incomplete. For example, deep data and DWA compression algorithms are not supported yet.
If you encounter an exr file that cannot be opened by this crate but should be, please leave an issue on this repository, containing the image file.
The focus is set on supporting all feature and correctness; some performance optimizations are to be done.
What we can do:
-
Supported OpenEXR Features
- custom attributes
- multi-part images (multiple layers, like Photoshop)
- multi-resolution images (mip maps, rip maps)
- access meta data and raw pixel blocks independently
- automatically crop away transparent pixels of an image (opt-in)
- channel subsampling
- deep data
- compression methods
- uncompressed
- zip line (lossless)
- zip block (lossless)
- rle (lossless)
- piz (lossless) (huge thanks to @dgsantana)
- pxr24 (lossless for f16 and u32)
- b44, b44a (huge thanks to @narann)
- dwaa, dwab (hunge thanks to @zinezockt)
- HTJ2K32, HTJ2K256
-
Nice Things
- no unsafe code, no undefined behaviour
- no CMake required or environment variables required
- re-imagined exr api with low barrier of entry
(see
read_rgba_file,write_rgba_file,read_all_data_from_file), plus embracing common high-level Rust abstractions - a full-fledged image data structure that can contain any exr image,
can open any image with a single function call (
read_all_data_from_file) without knowing anything about the file in advance - compress and decompress image sections either in parallel or with low memory overhead
- read and write progress callback
- write blocks streams, one after another
- memory mapping automatically supported
by using the generic
std::io::Readandstd::io::Writetraits
Usage
[!TIP] If you want to use the newest version of
exrswith an older Rust version, you can still do that, by forcing Rust to use an older version of thehalfcrate viacargo update -p half --precise 2.2.1, or downgrade all dependencies viacargo +nightly -Zminimal-versions generate-lockfile. Versionhalf 2.3.0and higher have an MSRV above 1.61.
Add this to your Cargo.toml:
[]
= "1.74.2"
# also, optionally add this to your crate for smaller binary size
# and better runtime performance
[]
= true
The master branch of this repository always matches the crates.io version,
so you could also link the github repository master branch.
Example
Example: generate an rgb exr file.
extern crate exr;
/// To write your image data, you need to specify how to retrieve a single pixel from it.
/// The closure may capture variables or generate data on the fly.
See the the examples folder for more examples.
Or read the guide.
Goals
exrs aims to provide a safe and convenient
interface to the OpenEXR file format. It is designed
to minimize the possibility of invalid files and runtime errors.
It contains a full-fledged image data structure that can contain any exr image,
but also grants access a low level block interface.
This library does not try to be a general purpose image file or image processing library. Therefore, color conversion, beautiful subsampling, and mip map generation are left to other crates for now. As the original OpenEXR implementation supports those operations, this library may choose to support them later. Furthermore, this implementation does not try to produce byte-exact file output matching the original implementation, instead, it is only aimed for correct output.
Safety
This library uses no unsafe code. In fact, this crate is annotated with #[forbid(unsafe_code)].
Some dependencies use unsafe code, though this is minimized by selecting dependencies carefully.
All information from a file is handled with caution. Allocations have a safe maximum size that will not be exceeded at once, to reduce memory exhaustion attacks.
What I am proud of
- Flexible API (choose how to store your data instead of receiving an allocated image)
- Safe API (almost impossible to accidentally write invalid files)
- "if it compiles, it runs" methodology
- Awesome Contributors!
Wasm
This crate supports the wasm32-unknown-unknown target for use in browsers and Node.js.
npm Package
For JavaScript/TypeScript projects, install the exrs package from npm:
import from 'exrs';
await ;
const bytes = ;
See the exrs-wasm documentation for the full API reference.
Notes
- Until WASM has threads, decoding and encoding will be slower for compressed files
- Read from byte buffers (
Uint8Array) instead of file handles
Motivation
This library does not support the toxic mindset of rewriting existing C++ code in Rust just for the sake of switching the language. The OpenEXR image format is defined by a proven and battle-tested reference implementation.
However, as an alternative to the official reference implementation, this library has the opportunity to explore radically different designs, no matter what language it is written in. Neat!
Also, I really wanted to have a library which had an 'X' in its name in my git repositories.
Keep in mind that there are official Rust bindings to the C++ reference implementation, and they offer several advantages over this Rust implementation:
- they support all the features and can read any file, no surprises
- they are constantly driven by industry giants, so they have the higher probability of still being maintained in a decade
- they are battle tested and relied upon by a lot of existing projects
Specification
This library is modeled after the
official OpenEXR Documentation
document. Saved older PDFs in /specification. Unspecified behavior is concluded from the C++ library.
Roadmap
- Support all compression formats
- Support subsampling
- Support Deep Data
- Automatic conversion between color spaces
- Profiling and other optimization
- Tooling (Image Viewer App, Metadata Extraction Tool, ...)
Contributing
This project has awesome contributors and is welcoming for contributions on Github.
Code Formatting
This repository uses Rustfmt's standard style. Continuous Integration checks formatting on every pull request and will fail if files are not properly formatted.
How to format locally:
- Format the entire workspace in-place:
cargo +nightly fmt --all
- Check formatting without changing files (what CI runs):
cargo +nightly fmt --all -- --check
If cargo +nightly fmt is not found, install the Rustfmt component via Rustup:
- Install Rustfmt for your current toolchain:
rustup component add rustfmt
- If needed, ensure the stable toolchain is installed, then add Rustfmt explicitly:
rustup toolchain install nightlyrustup component add --toolchain nightly rustfmt
You may also configure your editor to run cargo +nightly fmt on save.
Running Tests
To run all fast tests on your native system, use cargo test.
To start fuzzing on your native system indefinitely,
use cargo test --package exr --test fuzz fuzz -- --exact --ignored.
To run all fast tests on an emulated system, use one of the following commands.
Each command requires a running docker instance,
and cross-rs to be installed on your machine (cargo install cross).
- Powerpc (Big Endian)
cross test --target powerpc-unknown-linux-gnu --verbose
You may also need to install the toolchain beforehand, using
rustup toolchain add stable-x86_64-unknown-linux-gnu --profile minimal --force-non-host
and rustup target add powerpc-unknown-linux-gnu.
To benchmark the library, simply run cargo bench.
SIMD tests (Intel SDE)
The DWA DCT/IDCT code has SIMD kernels (AVX2 and SSE2) that are selected at
runtime via pulp, mirroring OpenEXR's own
cpuid dispatch. Each tier has its own feature-gated unit-test module in
src/compression/dwa/idct.rs:
mod avx2_tests— requires theavx2-testsfeature, exercises the AVX2 kernelmod sse2_tests— requires thesse2-testsfeature, exercises the SSE2 kernel
These tests are opt-in and are excluded from the normal cargo test run. A
test only passes if the requested tier is actually available on the CPU it runs
on, so the AVX2 test needs an AVX2-capable CPU and the SSE2 test additionally
asserts that AVX2 is not present (so it verifies the fallback path).
Because most machines only expose their native tier, we run these tests under
Intel SDE
(Software Development Emulator), which emulates a chosen microarchitecture. This
is exactly what the SIMD tests CI workflow does: Cargo still builds a generic
x86/x86-64 binary, and SDE only changes the runtime CPUID/features seen by
pulp. To reproduce it locally:
-
Install Intel SDE. Download it from the link above and put the
sde64binary on yourPATH(or note its full path). SDE runs on x86-64 Linux, macOS, and Windows. -
Build the library test binary without running it, then locate the executable:
# AVX2 # SSE2Cargo prints the path to the compiled unit-test binary (under
target/debug/deps/exr-<hash>). Since these are now in-crate unit tests, you select a tier by passing a test-name filter (there is no per-file test binary). A short substring likeavx2/sse2is enough — it matches the respectivemod avx2_tests/mod sse2_tests. -
Run that binary under SDE, selecting a chip that exposes the target tier and filtering to the tier's test module:
# AVX2 — Haswell is the first microarchitecture with AVX2 + FMA # SSE2 — Merom is the lowest 64-bit chip SDE models: it has SSE2 but no AVX, # so pulp falls back to the SSE2 kernelThe CI workflow asserts the run reports the exact expected number of passing tests, so a mistyped filter (which libtest would report as
0 passedwhile still exiting0) fails the job instead of silently passing.
[!IMPORTANT] Do not set a global
RUSTFLAGS="-C target-feature=+avx2"(or similar) to run these tests. This is a runtime-dispatched library: forcing a target feature globally would bake AVX2 into otherwise-portable code, break the plain x86-64 baseline, and make the fallback tests meaningless. The kernels already carry their own per-function#[target_feature], so no global flag is needed. SDE alone controls which tier the runtime dispatch selects.
If your own CPU already exposes the required tier, you can skip SDE and run the tests directly, e.g. on an AVX2-capable machine:
The SSE2 module additionally asserts that AVX2 is absent, so it only passes under SDE (or a CPU without AVX2) — running it directly on a modern machine will trip that assertion by design.