cmyk.hpp 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. Copyright 2005-2007 Adobe Systems Incorporated
  3. Use, modification and distribution are subject to the Boost Software License,
  4. Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt).
  6. See http://opensource.adobe.com/gil for most recent version including documentation.
  7. */
  8. /*************************************************************************************************/
  9. #ifndef GIL_CMYK_H
  10. #define GIL_CMYK_H
  11. ////////////////////////////////////////////////////////////////////////////////////////
  12. /// \file
  13. /// \brief Support for CMYK color space and variants
  14. /// \author Lubomir Bourdev and Hailin Jin \n
  15. /// Adobe Systems Incorporated
  16. /// \date 2005-2007 \n Last updated on October 10, 2007
  17. ////////////////////////////////////////////////////////////////////////////////////////
  18. #include <cstddef>
  19. #include "gil_config.hpp"
  20. #include "metafunctions.hpp"
  21. #include <boost/mpl/range_c.hpp>
  22. #include <boost/mpl/vector_c.hpp>
  23. namespace boost { namespace gil {
  24. /// \addtogroup ColorNameModel
  25. /// \{
  26. /// \brief Cyan
  27. struct cyan_t {};
  28. /// \brief Magenta
  29. struct magenta_t {};
  30. /// \brief Yellow
  31. struct yellow_t {};
  32. /// \brief Black
  33. struct black_t {};
  34. /// \}
  35. /// \ingroup ColorSpaceModel
  36. typedef mpl::vector4<cyan_t,magenta_t,yellow_t,black_t> cmyk_t;
  37. /// \ingroup LayoutModel
  38. typedef layout<cmyk_t> cmyk_layout_t;
  39. /// \ingroup ImageViewConstructors
  40. /// \brief from raw CMYK planar data
  41. template <typename IC>
  42. inline typename type_from_x_iterator<planar_pixel_iterator<IC,cmyk_t> >::view_t
  43. planar_cmyk_view(std::size_t width, std::size_t height, IC c, IC m, IC y, IC k, std::ptrdiff_t rowsize_in_bytes) {
  44. typedef typename type_from_x_iterator<planar_pixel_iterator<IC,cmyk_t> >::view_t RView;
  45. return RView(width, height, typename RView::locator(planar_pixel_iterator<IC,cmyk_t>(c,m,y,k), rowsize_in_bytes));
  46. }
  47. } } // namespace gil
  48. #endif