251 lines
6.9 KiB
C++
251 lines
6.9 KiB
C++
|
///////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Copyright (c) 2014 Industrial Light & Magic, a division of Lucas
|
||
|
// Digital Ltd. LLC
|
||
|
//
|
||
|
// All rights reserved.
|
||
|
//
|
||
|
// Redistribution and use in source and binary forms, with or without
|
||
|
// modification, are permitted provided that the following conditions are
|
||
|
// met:
|
||
|
// * Redistributions of source code must retain the above copyright
|
||
|
// notice, this list of conditions and the following disclaimer.
|
||
|
// * Redistributions in binary form must reproduce the above
|
||
|
// copyright notice, this list of conditions and the following disclaimer
|
||
|
// in the documentation and/or other materials provided with the
|
||
|
// distribution.
|
||
|
// * Neither the name of Industrial Light & Magic nor the names of
|
||
|
// its contributors may be used to endorse or promote products derived
|
||
|
// from this software without specific prior written permission.
|
||
|
//
|
||
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||
|
//
|
||
|
///////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
|
||
|
#include <ImfFlatImage.h>
|
||
|
#include <ImfDeepImage.h>
|
||
|
#include <ImfImageIO.h>
|
||
|
#include <ImfHeader.h>
|
||
|
#include <ImfStandardAttributes.h>
|
||
|
#include <Iex.h>
|
||
|
|
||
|
#include <cstdio>
|
||
|
#include <cassert>
|
||
|
|
||
|
|
||
|
using namespace OPENEXR_IMF_NAMESPACE;
|
||
|
using namespace IMATH_NAMESPACE;
|
||
|
using namespace IEX_NAMESPACE;
|
||
|
using namespace std;
|
||
|
|
||
|
namespace {
|
||
|
|
||
|
void
|
||
|
testFlatScanLineImage1 (const string &fileName)
|
||
|
{
|
||
|
FlatImage img1 (Box2i (V2i (0, 0), V2i (5, 5)), ONE_LEVEL, ROUND_DOWN);
|
||
|
img1.insertChannel ("H", HALF);
|
||
|
saveImage (fileName, img1);
|
||
|
|
||
|
Header hdr;
|
||
|
Image* img2 = loadImage (fileName, hdr);
|
||
|
|
||
|
assert (dynamic_cast <FlatImage *> (img2));
|
||
|
assert (img2->levelMode() == ONE_LEVEL);
|
||
|
assert (img2->levelRoundingMode() == ROUND_DOWN);
|
||
|
assert (!hdr.hasTileDescription());
|
||
|
|
||
|
delete img2;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
testFlatScanLineImage2 (const string &fileName)
|
||
|
{
|
||
|
FlatImage img1 (Box2i (V2i (0, 0), V2i (5, 5)), ONE_LEVEL, ROUND_DOWN);
|
||
|
img1.insertChannel ("H", HALF);
|
||
|
|
||
|
Header hdr1;
|
||
|
addComments (hdr1, "it's raining");
|
||
|
|
||
|
saveImage (fileName, hdr1, img1);
|
||
|
|
||
|
Header hdr2;
|
||
|
Image* img2 = loadImage (fileName, hdr2);
|
||
|
|
||
|
assert (dynamic_cast <FlatImage *> (img2));
|
||
|
assert (img2->levelMode() == ONE_LEVEL);
|
||
|
assert (img2->levelRoundingMode() == ROUND_DOWN);
|
||
|
assert (!hdr2.hasTileDescription());
|
||
|
assert (hasComments (hdr2));
|
||
|
assert (comments (hdr2) == "it's raining");
|
||
|
|
||
|
delete img2;
|
||
|
}
|
||
|
|
||
|
|
||
|
void
|
||
|
testFlatTiledImage1 (const string &fileName)
|
||
|
{
|
||
|
FlatImage img1 (Box2i (V2i (0, 0), V2i (5, 5)), MIPMAP_LEVELS, ROUND_DOWN);
|
||
|
img1.insertChannel ("H", HALF);
|
||
|
saveImage (fileName, img1);
|
||
|
|
||
|
Header hdr;
|
||
|
Image* img2 = loadImage (fileName, hdr);
|
||
|
|
||
|
assert (dynamic_cast <FlatImage *> (img2));
|
||
|
assert (img2->levelMode() == MIPMAP_LEVELS);
|
||
|
assert (img2->levelRoundingMode() == ROUND_DOWN);
|
||
|
assert (hdr.hasTileDescription());
|
||
|
|
||
|
delete img2;
|
||
|
}
|
||
|
|
||
|
|
||
|
void
|
||
|
testFlatTiledImage2 (const string &fileName)
|
||
|
{
|
||
|
FlatImage img1 (Box2i (V2i (0, 0), V2i (5, 5)), ONE_LEVEL, ROUND_DOWN);
|
||
|
img1.insertChannel ("H", HALF);
|
||
|
|
||
|
Header hdr1;
|
||
|
hdr1.setTileDescription (TileDescription (32, 32));
|
||
|
|
||
|
saveImage (fileName, hdr1, img1);
|
||
|
|
||
|
Header hdr2;
|
||
|
Image* img2 = loadImage (fileName, hdr2);
|
||
|
|
||
|
assert (dynamic_cast <FlatImage *> (img2));
|
||
|
assert (img2->levelMode() == ONE_LEVEL);
|
||
|
assert (img2->levelRoundingMode() == ROUND_DOWN);
|
||
|
assert (hdr2.hasTileDescription());
|
||
|
|
||
|
delete img2;
|
||
|
}
|
||
|
|
||
|
|
||
|
void
|
||
|
testDeepScanLineImage1 (const string &fileName)
|
||
|
{
|
||
|
DeepImage img1 (Box2i (V2i (0, 0), V2i (5, 5)), ONE_LEVEL, ROUND_DOWN);
|
||
|
img1.insertChannel ("H", HALF);
|
||
|
saveImage (fileName, img1);
|
||
|
|
||
|
Header hdr;
|
||
|
Image* img2 = loadImage (fileName, hdr);
|
||
|
|
||
|
assert (dynamic_cast <DeepImage *> (img2));
|
||
|
assert (img2->levelMode() == ONE_LEVEL);
|
||
|
assert (img2->levelRoundingMode() == ROUND_DOWN);
|
||
|
assert (!hdr.hasTileDescription());
|
||
|
|
||
|
delete img2;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
testDeepScanLineImage2 (const string &fileName)
|
||
|
{
|
||
|
DeepImage img1 (Box2i (V2i (0, 0), V2i (5, 5)), ONE_LEVEL, ROUND_DOWN);
|
||
|
img1.insertChannel ("H", HALF);
|
||
|
|
||
|
Header hdr1;
|
||
|
addComments (hdr1, "it's raining");
|
||
|
|
||
|
saveImage (fileName, hdr1, img1);
|
||
|
|
||
|
Header hdr2;
|
||
|
Image* img2 = loadImage (fileName, hdr2);
|
||
|
|
||
|
assert (dynamic_cast <DeepImage *> (img2));
|
||
|
assert (img2->levelMode() == ONE_LEVEL);
|
||
|
assert (img2->levelRoundingMode() == ROUND_DOWN);
|
||
|
assert (!hdr2.hasTileDescription());
|
||
|
assert (hasComments (hdr2));
|
||
|
assert (comments (hdr2) == "it's raining");
|
||
|
|
||
|
delete img2;
|
||
|
}
|
||
|
|
||
|
|
||
|
void
|
||
|
testDeepTiledImage1 (const string &fileName)
|
||
|
{
|
||
|
DeepImage img1 (Box2i (V2i (0, 0), V2i (5, 5)), MIPMAP_LEVELS, ROUND_DOWN);
|
||
|
img1.insertChannel ("H", HALF);
|
||
|
saveImage (fileName, img1);
|
||
|
|
||
|
Header hdr;
|
||
|
Image* img2 = loadImage (fileName, hdr);
|
||
|
|
||
|
assert (dynamic_cast <DeepImage *> (img2));
|
||
|
assert (img2->levelMode() == MIPMAP_LEVELS);
|
||
|
assert (img2->levelRoundingMode() == ROUND_DOWN);
|
||
|
assert (hdr.hasTileDescription());
|
||
|
|
||
|
delete img2;
|
||
|
}
|
||
|
|
||
|
|
||
|
void
|
||
|
testDeepTiledImage2 (const string &fileName)
|
||
|
{
|
||
|
DeepImage img1 (Box2i (V2i (0, 0), V2i (5, 5)), ONE_LEVEL, ROUND_DOWN);
|
||
|
img1.insertChannel ("H", HALF);
|
||
|
|
||
|
Header hdr1;
|
||
|
hdr1.setTileDescription (TileDescription (32, 32));
|
||
|
|
||
|
saveImage (fileName, hdr1, img1);
|
||
|
|
||
|
Header hdr2;
|
||
|
Image* img2 = loadImage (fileName, hdr2);
|
||
|
|
||
|
assert (dynamic_cast <DeepImage *> (img2));
|
||
|
assert (img2->levelMode() == ONE_LEVEL);
|
||
|
assert (img2->levelRoundingMode() == ROUND_DOWN);
|
||
|
assert (hdr2.hasTileDescription());
|
||
|
|
||
|
delete img2;
|
||
|
}
|
||
|
|
||
|
|
||
|
} // namespace
|
||
|
|
||
|
|
||
|
void
|
||
|
testIO (const string &tempDir)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
cout << "Testing I/O based on image and file type" << endl;
|
||
|
|
||
|
testFlatScanLineImage1 (tempDir + "io.exr");
|
||
|
testFlatScanLineImage2 (tempDir + "io.exr");
|
||
|
testFlatTiledImage1 (tempDir + "io.exr");
|
||
|
testFlatTiledImage1 (tempDir + "io.exr");
|
||
|
testDeepScanLineImage1 (tempDir + "io.exr");
|
||
|
testDeepScanLineImage2 (tempDir + "io.exr");
|
||
|
testDeepTiledImage1 (tempDir + "io.exr");
|
||
|
testDeepTiledImage2 (tempDir + "io.exr");
|
||
|
|
||
|
cout << "ok\n" << endl;
|
||
|
}
|
||
|
catch (const std::exception &e)
|
||
|
{
|
||
|
cerr << "ERROR -- caught exception: " << e.what() << endl;
|
||
|
assert (false);
|
||
|
}
|
||
|
}
|