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
|
|
|
*
|
2024-07-22 11:20:47 +02:00
|
|
|
* Copyright (C) 2024 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
|
|
|
|
2012-04-08 02:45:01 +02:00
|
|
|
// mapnik
|
2006-10-04 13:22:18 +02:00
|
|
|
#include <mapnik/image_reader.hpp>
|
2007-12-10 20:59:17 +01:00
|
|
|
#include <mapnik/image_util.hpp>
|
2007-10-08 19:42:41 +02:00
|
|
|
#include <mapnik/factory.hpp>
|
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
namespace mapnik {
|
2013-04-22 12:35:09 +02:00
|
|
|
|
2024-04-19 20:45:24 +02:00
|
|
|
inline std::optional<std::string> type_from_bytes(char const* data, size_t size)
|
2013-04-22 12:35:09 +02:00
|
|
|
{
|
2018-02-13 13:34:42 +01:00
|
|
|
unsigned char const* header = reinterpret_cast<unsigned char const*>(data);
|
2013-04-22 12:35:09 +02:00
|
|
|
if (size >= 4)
|
|
|
|
{
|
2018-02-13 13:34:42 +01:00
|
|
|
unsigned int magic = (header[0] << 24) | (header[1] << 16) | (header[2] << 8) | header[3];
|
2013-04-22 12:35:09 +02:00
|
|
|
if (magic == 0x89504E47U)
|
|
|
|
{
|
2024-04-19 20:45:24 +02:00
|
|
|
return "png";
|
2013-04-22 12:35:09 +02:00
|
|
|
}
|
2018-02-13 13:34:42 +01:00
|
|
|
else if (magic == 0x49492A00U || magic == 0x4D4D002AU)
|
2013-04-22 12:35:09 +02:00
|
|
|
{
|
2024-04-19 20:45:24 +02:00
|
|
|
return "tiff";
|
2013-04-22 12:35:09 +02:00
|
|
|
}
|
|
|
|
}
|
2022-01-26 10:43:31 +01:00
|
|
|
if (size >= 2)
|
2013-04-22 12:35:09 +02:00
|
|
|
{
|
2018-02-13 13:34:42 +01:00
|
|
|
unsigned int magic = ((header[0] << 8) | header[1]) & 0xffff;
|
2013-04-22 12:35:09 +02:00
|
|
|
if (magic == 0xffd8)
|
|
|
|
{
|
2024-04-19 20:45:24 +02:00
|
|
|
return "jpeg";
|
2013-04-22 12:35:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
if (size >= 12)
|
2013-07-19 07:09:17 +02:00
|
|
|
{
|
2022-01-26 10:43:31 +01:00
|
|
|
if (header[0] == 'R' && header[1] == 'I' && header[2] == 'F' && header[3] == 'F' && header[8] == 'W' &&
|
|
|
|
header[9] == 'E' && header[10] == 'B' && header[11] == 'P')
|
2013-07-19 07:09:17 +02:00
|
|
|
{
|
2024-04-19 20:45:24 +02:00
|
|
|
return "webp";
|
2013-07-19 07:09:17 +02:00
|
|
|
}
|
|
|
|
}
|
2024-04-19 20:45:24 +02:00
|
|
|
return std::nullopt;
|
2013-04-22 12:35:09 +02:00
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2013-04-22 12:35:09 +02:00
|
|
|
image_reader* get_image_reader(char const* data, size_t size)
|
|
|
|
{
|
2024-04-19 20:45:24 +02:00
|
|
|
const auto type = type_from_bytes(data, size);
|
|
|
|
if (type.has_value())
|
2022-01-26 10:43:31 +01:00
|
|
|
return factory<image_reader, std::string, char const*, size_t>::instance().create_object(*type, data, size);
|
2013-09-20 05:19:01 +02:00
|
|
|
else
|
|
|
|
throw image_reader_exception("image_reader: can't determine type from input data");
|
2013-04-22 12:35:09 +02:00
|
|
|
}
|
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
image_reader* get_image_reader(std::string const& filename, std::string const& type)
|
2009-12-16 21:02:06 +01:00
|
|
|
{
|
2022-01-26 10:43:31 +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
|
|
|
{
|
2024-04-19 20:45:24 +02:00
|
|
|
const auto type = type_from_filename(filename);
|
|
|
|
if (type.has_value())
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2022-01-26 10:43:31 +01:00
|
|
|
return factory<image_reader, std::string, std::string const&>::instance().create_object(*type, filename);
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2015-03-10 16:05:50 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
throw image_reader_exception("image_reader: can't determine type from input data");
|
|
|
|
}
|
2009-12-16 21:02:06 +01:00
|
|
|
}
|
2007-12-10 20:59:17 +01:00
|
|
|
|
2022-01-26 10:43:31 +01:00
|
|
|
} // namespace mapnik
|