• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright 2013 Christian Henning
3 //
4 // Distributed under the Boost Software License, Version 1.0
5 // See accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt
7 //
8 #include <boost/gil.hpp>
9 #include <boost/gil/io/typedefs.hpp>
10 #include <boost/gil/extension/io/tiff.hpp>
11 
12 #include <boost/test/unit_test.hpp>
13 
14 #include "color_space_write_test.hpp"
15 #include "mandel_view.hpp"
16 #include "paths.hpp"
17 
18 using namespace std;
19 using namespace boost::gil;
20 
21 using tag_t = tiff_tag;
22 
23 BOOST_AUTO_TEST_SUITE( gil_io_tiff_tests )
24 
BOOST_AUTO_TEST_CASE(rgb_color_space_write_test)25 BOOST_AUTO_TEST_CASE( rgb_color_space_write_test )
26 {
27     color_space_write_test< tag_t >( tiff_out + "rgb_color_space_test.tif"
28                                    , tiff_out + "bgr_color_space_test.tif"
29                                    );
30 }
31 
32 BOOST_AUTO_TEST_SUITE_END()
33