boost::gil::default_color_converter_impl<cmyk_t, rgb_t>
CMYK to RGB (not the fastest code in the world)
Synopsis
Declared in <boost/gil/color_convert.hpp>
template<>
struct default_color_converter_impl<cmyk_t, rgb_t>;
Description
r = 1 ‐ min(1, c*(1‐k)+k) g = 1 ‐ min(1, m*(1‐k)+k) b = 1 ‐ min(1, y*(1‐k)+k)
Member Functions
Name |
Created with MrDocs