rgba.hpp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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_RGBA_H
  10. #define GIL_RGBA_H
  11. ////////////////////////////////////////////////////////////////////////////////////////
  12. /// \file
  13. /// \brief Support for RGBA 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 <boost/mpl/contains.hpp>
  21. #include "rgb.hpp"
  22. #include "planar_pixel_iterator.hpp"
  23. namespace boost { namespace gil {
  24. /// \ingroup ColorNameModel
  25. /// \brief Alpha
  26. struct alpha_t {};
  27. /// \ingroup ColorSpaceModel
  28. typedef mpl::vector4<red_t,green_t,blue_t,alpha_t> rgba_t;
  29. /// \ingroup LayoutModel
  30. typedef layout<rgba_t> rgba_layout_t;
  31. /// \ingroup LayoutModel
  32. typedef layout<rgba_t, mpl::vector4_c<int,2,1,0,3> > bgra_layout_t;
  33. /// \ingroup LayoutModel
  34. typedef layout<rgba_t, mpl::vector4_c<int,1,2,3,0> > argb_layout_t;
  35. /// \ingroup LayoutModel
  36. typedef layout<rgba_t, mpl::vector4_c<int,3,2,1,0> > abgr_layout_t;
  37. /// \ingroup ImageViewConstructors
  38. /// \brief from raw RGBA planar data
  39. template <typename IC>
  40. inline
  41. typename type_from_x_iterator<planar_pixel_iterator<IC,rgba_t> >::view_t
  42. planar_rgba_view(std::size_t width, std::size_t height,
  43. IC r, IC g, IC b, IC a,
  44. std::ptrdiff_t rowsize_in_bytes) {
  45. typedef typename type_from_x_iterator<planar_pixel_iterator<IC,rgba_t> >::view_t RView;
  46. return RView(width, height,
  47. typename RView::locator(planar_pixel_iterator<IC,rgba_t>(r,g,b,a),
  48. rowsize_in_bytes));
  49. }
  50. } } // namespace boost::gil
  51. #endif