Home

Awesome

OpenEXR.jl

Build Status codecov.io

Saving and loading of OpenEXR files.

Load an EXR file

using OpenEXR

myimage = OpenEXR.load("myimage.exr")

myimage has type Array{T,2} where T is one of:

depending on which channels are present in the file.

Save an image as an EXR file

OpenEXR.save("myimage2.exr", myimage)

myimage can be any subtype of AbstractArray{C,2} where C is any color type defined in ColorTypes.jl.