tiff_write_test.cpp 819 B

1234567891011121314151617181920212223242526272829303132
  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. #include <boost/test/unit_test.hpp>
  12. #include "color_space_write_test.hpp"
  13. #include "mandel_view.hpp"
  14. #include "paths.hpp"
  15. using namespace std;
  16. using namespace boost::gil;
  17. using tag_t = tiff_tag;
  18. BOOST_AUTO_TEST_SUITE( gil_io_tiff_tests )
  19. BOOST_AUTO_TEST_CASE( rgb_color_space_write_test )
  20. {
  21. color_space_write_test< tag_t >( tiff_out + "rgb_color_space_test.tif"
  22. , tiff_out + "bgr_color_space_test.tif"
  23. );
  24. }
  25. BOOST_AUTO_TEST_SUITE_END()