-
Notifications
You must be signed in to change notification settings - Fork 452
Adding OpenEXR
The OpenEXR format is a high dynamic-range (HDR) image file format developed by Industrial Light & Magic for use in computer imaging applications. It is commonly used as a source format for HDR textures.
Be sure to note that the OpenEXR library has it's own license terms, as does the required ZLIB library.
The OpenEXR library can be obtained from GitHub. Building the library requires CMake and ZLib.
To build the library with Visual C++ 2015 for x64, the zlib.cmd script followed by the openexr.cmd script can be used. Be sure to have installed the Git for Windows tools (optional feature of Visual Studio) before running as well.
The DirectXTex auxiliary module for loading EXR
files is in the DirectXTexEXR.h and DirectXTexEXR.cpp source files. Save these files to your project directory and add them to the project.
Note if you want to add OpenEXR support directly to your local build of the DirectXTex library, you should edit
DirectXTexEXR.cpp
and add#include "DirectXTexP.h"
to the top of the file. This is required for proper Precompiled Header behavior. You should also comment out the first anonymous namespace as it defines helpers already defined in theDirectXTexP.h
header such assafe_handle
,ScopedHandle
,auto_delete_file
, etc.
For the DirectXTexEXR.cpp
file, update the project property Additional Include Directories to include the OpenEXR library headers.
If using the recommended scripts above, add
.\local\include\OpenEXR
For the executables that build with this support, you need to update the project property Additional Library Directories to include the OpenEXR libraries.
If using the recommended scripts above, add
.\local\lib
Returns the TexMetadata from a .EXR
file.
HRESULT GetMetadataFromEXRFile( const wchar_t* szFile,
TexMetadata& metadata );
Loads a .EXR
file.
HRESULT LoadFromEXRFile const wchar_t* szFile,
TexMetadata* metadata, ScratchImage& image );
- The data is always loaded as
R16G16B16A16_FLOAT
.
Saves a single image to a .EXR
file.
HRESULT SaveToEXRFile( const Image& image, const wchar_t* szFile );
-
R16G16B16A16_FLOAT
,R32G32B32A32_FLOAT
, andR32G32B32_FLOAT
data are supported for writing, and are always written ashalf
channel format data.
For the load functions, the metadata parameter can be nullptr as this information is also available in the returned ScratchImage.
This is a simple loading example.
auto image = std::make_unique<ScratchImage>();
HRESULT hr = LoadFromEXRFile( L"flowers.exr", nullptr, *image );
if ( FAILED(hr) )
// error
Storing an image.
const Image* img = image->GetImage(0,0,0);
assert( img );
HRESULT hr = SaveToEXRFile( *img, L"NEW_IMAGE.EXR" );
if ( FAILED(hr) )
// error
You can also save data directly from memory without using the intermediate ScratchImage at all. This example assumes a single 2D image is being written out.
Image img;
img.width = /*<width of pixel data>*/;
img.height = /*<height of pixel data>*/;
img.format = /* DXGI_FORMAT_R16G16B16A16_FLOAT,
DXGI_FORMAT_R32G32B32A32_FLOAT
or DXGI_FORMAT_R32G32B32_FLOAT */;
img.rowPitch = /*<number of bytes in a scanline of the source data>*/;
img.slicePitch = /*<number of bytes in the entire 2D image>*/;
img.pixels = /*<pointer to pixel data>*/;
HRESULT hr = SaveToEXRFile( img, L"NEW_IMAGE.EXR" );
if ( FAILED(hr) )
// error
Sample images can be obtained from GitHub.
The tools that use DirectXTex can be updated to opt-in to OpenEXR support as well, typically by enabling #define USE_OPENEXR
and rebuilding. See texconv, texdiag, texassemble, and uvatlastool.
Kainz, Bogart, and Hess. "Chapter 26. The OpenEXR Image File Format", GPU Gems, Addison-Wesley, 2004 link
All content and source code for this package are subject to the terms of the MIT License.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
- Universal Windows Platform apps
- Windows desktop apps
- Windows 11
- Windows 10
- Windows 8.1
- Xbox One
- Xbox Series X|S
- Windows Subsystem for Linux
- x86
- x64
- ARM64
- Visual Studio 2022
- Visual Studio 2019 (16.11)
- clang/LLVM v12 - v18
- GCC 10.5, 11.4, 12.3
- MinGW 12.2, 13.2
- CMake 3.20
DirectX Tool Kit for DirectX 11