image_slurp.hpp
Go to the documentation of this file.
00001 /* 00002 Copyright 2005-2007 Adobe Systems Incorporated 00003 Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt 00004 or a copy at http://stlab.adobe.com/licenses.html) 00005 */ 00006 00007 /**************************************************************************************************/ 00008 00009 #ifndef ADOBE_IMAGE_SLURP_HPP 00010 #define ADOBE_IMAGE_SLURP_HPP 00011 00012 /**************************************************************************************************/ 00013 00014 #include <adobe/config.hpp> 00015 00016 #include <boost/filesystem/path.hpp> 00017 00018 #include <boost/gil/algorithm.hpp> 00019 #include <boost/gil/color_convert.hpp> 00020 #include <boost/gil/image.hpp> 00021 #include <boost/gil/image_view_factory.hpp> 00022 #include <boost/gil/rgba.hpp> 00023 #include <boost/gil/typedefs.hpp> 00024 00025 /**************************************************************************************************/ 00026 00027 namespace adobe { 00028 00029 /**************************************************************************************************/ 00030 00038 00039 void image_slurp(const boost::filesystem::path& path, boost::gil::rgba8_image_t& image); 00040 00041 /**************************************************************************************************/ 00042 00043 } // namespace adobe 00044 00045 /**************************************************************************************************/ 00046 00047 #endif 00048 00049 /**************************************************************************************************/ |