|
cmyk.hpp
Go to the documentation of this file.
11 /*************************************************************************************************/
62 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) {
64 return RView(width, height, typename RView::locator(planar_pixel_iterator<IC,cmyk_t>(c,m,y,k), rowsize_in_bytes));
metafunctions that construct types or return type properties An iterator over planar pixels. Models HomogeneousColorBaseConcept, PixelIteratorConcept, HomogeneousPixelBasedConcept, MemoryBasedIteratorConcept, HasDynamicXStepTypeConcept. Definition: algorithm.hpp:53 Given a pixel iterator defining access to pixels along a row, returns the types of the corresponding ... Definition: metafunctions.hpp:252 Represents a color space and ordering of channels in memory. Definition: utilities.hpp:306 GIL configuration file. type_from_x_iterator< planar_pixel_iterator< IC, cmyk_t > >::view_t 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) from raw CMYK planar data Definition: cmyk.hpp:62 Generated on Mon Mar 26 2018 12:01:35 for Generic Image Library by
1.8.6
|