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/extension/io/tiff.hpp> 10 #include <boost/gil/io/typedefs.hpp> 11 12 #include <boost/core/lightweight_test.hpp> 13 14 #include "color_space_write_test.hpp" 15 #include "mandel_view.hpp" 16 #include "paths.hpp" 17 18 namespace gil = boost::gil; 19 test_rgb_color_space_write()20void test_rgb_color_space_write() 21 { 22 color_space_write_test<gil::tiff_tag>( 23 tiff_out + "rgb_color_space_test.tif", tiff_out + "bgr_color_space_test.tif"); 24 } 25 main()26int main() 27 { 28 test_rgb_color_space_write(); 29 30 return boost::report_errors(); 31 } 32