summaryrefslogtreecommitdiffstats
path: root/src/openexr-test.cpp
blob: 63bcedafc43ac952df3cc7352b202febc53083d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * This file is part of MXE. See LICENSE.md for licensing 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;
}