![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/include/boost/gil/io/ |
Upload File : |
// // Copyright 2007-2008 Christian Henning, Andreas Pokorny // // Distributed under the Boost Software License, Version 1.0 // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt // #ifndef BOOST_GIL_IO_CONVERSION_POLICIES_HPP #define BOOST_GIL_IO_CONVERSION_POLICIES_HPP #include <boost/gil/image_view_factory.hpp> #include <boost/gil/io/error.hpp> #include <algorithm> #include <iterator> #include <type_traits> namespace boost{namespace gil{ namespace detail { struct read_and_no_convert { public: using color_converter_type = void *; template <typename InIterator, typename OutIterator> void read( InIterator const& /*begin*/, InIterator const& /*end*/ , OutIterator /*out*/, typename std::enable_if < mpl::not_ < pixels_are_compatible < typename std::iterator_traits<InIterator>::value_type, typename std::iterator_traits<OutIterator>::value_type > >::value >::type* /*dummy*/ = nullptr) { io_error("Data cannot be copied because the pixels are incompatible."); } template <typename InIterator, typename OutIterator> void read(InIterator const& begin, InIterator const& end, OutIterator out, typename std::enable_if < pixels_are_compatible < typename std::iterator_traits<InIterator>::value_type, typename std::iterator_traits<OutIterator>::value_type >::value >::type* /*dummy*/ = nullptr) { std::copy(begin, end, out); } }; template<typename CC> struct read_and_convert { public: using color_converter_type = default_color_converter; CC _cc; read_and_convert() {} read_and_convert( const color_converter_type& cc ) : _cc( cc ) {} template< typename InIterator , typename OutIterator > void read( const InIterator& begin , const InIterator& end , OutIterator out ) { using deref_t = color_convert_deref_fn<typename std::iterator_traits<InIterator>::reference , typename std::iterator_traits<OutIterator>::value_type //reference? , CC >; std::transform( begin , end , out , deref_t( _cc ) ); } }; /// is_read_only metafunction /// \brief Determines if reader type is read only ( no conversion ). template< typename Conversion_Policy > struct is_read_only : mpl::false_ {}; template<> struct is_read_only< detail::read_and_no_convert > : mpl::true_ {}; } // namespace detail } // namespace gil } // namespace boost #endif