openexr-write: Library for writing images in OpenEXR HDR file format.

[ graphics, library ] [ Propose Tags ]

OpenEXR allows to store pixels as floating point numbers and thus can capture high dynamic range.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0.0, 0.1.0.1, 0.1.0.2
Change log CHANGELOG.md
Dependencies base (>=4.8 && <5), binary, bytestring, data-binary-ieee754, deepseq, split, vector, vector-split, zlib [details]
License GPL-3.0-only
Copyright 2017 Pavol Klacansky
Author Pavol Klacansky
Maintainer pavol@klacansky.com
Category Graphics
Home page https://github.com/pavolzetor/openexr-write#readme
Source repo head: git clone https://github.com/pavolzetor/openexr-write
Uploaded by pavolzetor at 2017-07-04T04:41:56Z
Distributions LTSHaskell:0.1.0.2, NixOS:0.1.0.2, Stackage:0.1.0.2
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 2442 total (20 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2017-07-04 [all 1 reports]

Readme for openexr-write-0.1.0.1

[back to package description]

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