summaryrefslogtreecommitdiffstats
path: root/src/openexr-test.cpp
blob: bb1292ad66a5732b3b5ffd5c25071e38405d3587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <ImfChannelList.h>
#include <ImfInputFile.h>

using namespace Imf;
using namespace Imath;

int main(int argc, char *argv[])
{
    (void)argc;
    (void)argv;

    InputFile file("some-file.exr");
    Box2i dw = file.header().dataWindow();

    return 0;
}