mapnik/src/image_reader.cpp

91 lines
2.9 KiB
C++
Raw Normal View History

2006-03-31 12:32:02 +02:00
/*****************************************************************************
2012-02-02 02:53:35 +01:00
*
2006-03-31 12:32:02 +02:00
* This file is part of Mapnik (c++ mapping toolkit)
2005-06-14 17:06:59 +02:00
*
2014-11-20 15:25:50 +01:00
* Copyright (C) 2014 Artem Pavlenko
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
2005-06-14 17:06:59 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2006-03-31 12:32:02 +02:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
2005-06-14 17:06:59 +02:00
// mapnik
#include <mapnik/image_reader.hpp>
#include <mapnik/image_util.hpp>
2007-10-08 19:42:41 +02:00
#include <mapnik/factory.hpp>
2005-06-14 17:06:59 +02:00
namespace mapnik
2012-02-02 02:53:35 +01:00
{
inline boost::optional<std::string> type_from_bytes(char const* data, size_t size)
{
using result_type = boost::optional<std::string>;
if (size >= 4)
{
unsigned int magic = (data[0] << 24) | (data[1] << 16) | (data[2] << 8) | data[3];
if (magic == 0x89504E47U)
{
return result_type("png");
}
else if (magic == 0x49492A00 || magic == 0x4D4D002A)
{
return result_type("tiff");
}
}
if (size>=2)
{
unsigned int magic = ((data[0] << 8) | data[1]) & 0xffff;
if (magic == 0xffd8)
{
return result_type("jpeg");
}
}
if (size>=12)
{
if (data[0] == 'R' && data[1] == 'I' && data[2] == 'F' && data[3] == 'F' &&
data[8] == 'W' && data[9] == 'E' && data[10] == 'B' && data[11] == 'P')
{
return result_type("webp");
}
}
return result_type();
}
2012-02-02 02:53:35 +01:00
image_reader* get_image_reader(char const* data, size_t size)
{
boost::optional<std::string> type = type_from_bytes(data,size);
if (type)
return factory<image_reader,std::string,char const*,size_t>::instance().create_object(*type, data,size);
else
throw image_reader_exception("image_reader: can't determine type from input data");
}
2012-09-03 19:27:48 +02:00
image_reader* get_image_reader(std::string const& filename,std::string const& type)
2009-12-16 21:02:06 +01:00
{
return factory<image_reader,std::string,std::string const&>::instance().create_object(type,filename);
2009-12-16 21:02:06 +01:00
}
2012-09-03 19:27:48 +02:00
image_reader* get_image_reader(std::string const& filename)
2009-12-16 21:02:06 +01:00
{
boost::optional<std::string> type = type_from_filename(filename);
if (type)
2005-06-14 17:06:59 +02:00
{
return factory<image_reader,std::string,std::string const&>::instance().create_object(*type,filename);
2005-06-14 17:06:59 +02:00
}
2009-12-16 21:02:06 +01:00
return 0;
}
2005-06-14 17:06:59 +02:00
}