8 #ifndef BOOST_GIL_IO_MAKE_SCANLINE_READER_HPP 9 #define BOOST_GIL_IO_MAKE_SCANLINE_READER_HPP 11 #include <boost/gil/io/get_reader.hpp> 13 #include <boost/mpl/and.hpp> 15 #include <type_traits> 17 namespace boost {
namespace gil {
19 template <
typename String,
typename FormatTag>
21 auto make_scanline_reader(String
const& file_name, FormatTag
const&,
22 typename std::enable_if
26 detail::is_supported_path_spec<String>,
27 is_format_tag<FormatTag>
30 ->
typename get_scanline_reader<String, FormatTag>::type
32 using device_t =
typename get_read_device<String, FormatTag>::type;
34 detail::convert_to_native_string(file_name),
35 typename detail::file_stream_device<FormatTag>::read_tag());
37 return typename get_scanline_reader<String, FormatTag>::type(
38 device, image_read_settings<FormatTag>());
41 template<
typename FormatTag >
43 typename get_scanline_reader< std::wstring
46 make_scanline_reader(
const std::wstring& file_name
50 const char* str = detail::convert_to_native_string( file_name );
52 typename get_read_device< std::wstring
55 ,
typename detail::file_stream_device< FormatTag >::read_tag()
60 return typename get_scanline_reader< std::wstring
63 , image_read_settings< FormatTag >()
67 #ifdef BOOST_GIL_IO_ADD_FS_PATH_SUPPORT 68 template<
typename FormatTag >
70 typename get_scanline_reader< std::wstring
73 make_scanline_reader(
const filesystem::path& path
77 return make_scanline_reader( path.wstring()
78 , image_read_settings< FormatTag >()
81 #endif // BOOST_GIL_IO_ADD_FS_PATH_SUPPORT 83 template <
typename Device,
typename FormatTag>
85 auto make_scanline_reader(Device& io_dev, FormatTag
const&,
86 typename std::enable_if
90 detail::is_adaptable_input_device<FormatTag, Device>,
91 is_format_tag<FormatTag>
94 ->
typename get_scanline_reader<Device, FormatTag>::type
96 return make_scanline_reader(io_dev, image_read_settings<FormatTag>());
Definition: algorithm.hpp:30