SFML community forums
General => Feature requests => Topic started by: retep998 on October 10, 2010, 07:00:42 am
-
I'd love to have support for loading .exr images
http://www.openexr.com/index.html
Basically, with a .exr image you can have 16 bits per color or even 32 bits per color, in both integer and floating point, thereby allowing a HUGE range of colors.
-
HDR images need special processing to produce relevant effects, loading such an image with SFML would make no difference: both the pixel storage and rendering process use a fixed color representation (RGBA integer 32 bits).
-
I already have all the special processing stuff setup and ready to use. All I need is to be able to load .exr images and my system is good to go.
Since it doesn't seem like you're interested in expanding sfml beyond basic 2d stuff I'll implement it myself...
-
But even if I implement it, it will be loaded as 32 bits integer RGBA. I would have to make big modifications to SFML especially for that purpose.