boost::gil::any_color_converted_view

any_color_converted_view overloads

Synopses

overload of generic color_converted_view with the default color‐converter These are workarounds for GCC 3.4, which thinks color_converted_view is ambiguous with the same method for templated views (in gil/image_view_factory.hpp)

template<
    typename DstP,
    typename... Views>
[[deprecated("Use color_converted_view(any_image_view<Views...> const& src) instead.")]]
color_converted_view_type<any_image_view<Views...>, DstP>::type
any_color_converted_view(any_image_view<Views...> const& src);

overload of generic color_converted_view with user defined color‐converter These are workarounds for GCC 3.4, which thinks color_converted_view is ambiguous with the same method for templated views (in gil/image_view_factory.hpp)

template<
    typename DstP,
    typename... Views,
    typename CC>
[[deprecated("Use color_converted_view(const any_image_view<Views...>& src, CC) instead.")]]
color_converted_view_type<any_image_view<Views...>, DstP, CC>::type
any_color_converted_view(
    any_image_view<Views...> const& src,
    CC cc);

Deprecated. Use of this entity is allowed but discouraged.

Template Parameters

Name

Description

Views

Models Boost.MP11‐compatible list of models of ImageViewConcept

Created with MrDocs