Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 872 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 872 Bytes

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:

  • RGBA{Float16}
  • RGB{Float16}
  • GrayA{Float16}
  • Gray{Float16}

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.