I made an openEXR save and load functions. The load takes a stack of .hdr files from a directory and then the save function writes the .exr file which "merges" the .hdr files in one .exr file.
This is working well but the .hdr files were RLE compressed and I didn't find the way with the OpenEXR library to compress the .exr file.
Though, I know OpenEXR file can compress in RLE. Has anyone found how to do that in c++ ? The documentation is here : http://www.openexr.com/openexrfilelayout.pdf but it does not really explain how to perform that...