openexr-write

Library for writing images in OpenEXR HDR file format.

https://github.com/pavolzetor/openexr-write#readme

Version on this page:0.1.0.1
LTS Haskell 22.14:0.1.0.2
Stackage Nightly 2024-03-28:0.1.0.2
Latest on Hackage:0.1.0.2

See all snapshots openexr-write appears in

GPL-3.0-only licensed by Pavol Klacansky
Maintained by [email protected]
This version can be pinned in stack with:openexr-write-0.1.0.1@sha256:879417743fcfa3a09d2a624c2bdcfc1fe9e86692fe369cf5f946c45ef04592d3,1845

Module documentation for 0.1.0.1

Haskell OpenEXR Library

This library can write colored images which use floating point values into OpenEXR (v2) high-dynamic-range file format.

Supported features:

  • scanline format
  • compression (ZIPS, ZIP)
  • pixel format (RGB float32)

Usage

Modify project’s stack.yaml by adding path to openexr-write package.

packages:
- '.'
- path/openexr-write

An image can be written by calling writeFile function. For example, following code stores a compressed image consisting of one red pixel.

module Main where

import qualified Data.Vector      as V
import qualified Graphics.OpenEXR as EXR


main :: IO ()
main = do
        let image = EXR.ImageRGBF 1 1 (V.fromList [EXR.PixelRGBF 1.0 0.0 0.0])
        EXR.writeFile "image.exr" image EXR.ZipCompression