2006-03-31 10:32:02 +00:00
|
|
|
/*****************************************************************************
|
2012-02-02 01:53:35 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2005-06-14 15:06:59 +00:00
|
|
|
*
|
2014-11-20 14:25:50 +00:00
|
|
|
* Copyright (C) 2014 Artem Pavlenko
|
2005-06-14 15:06:59 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00: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 15:06:59 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 10:32:02 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* 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 15:06:59 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00:00
|
|
|
*****************************************************************************/
|
2005-06-14 15:06:59 +00:00
|
|
|
|
2006-10-04 11:22:18 +00:00
|
|
|
// mapnik
|
2013-01-29 07:17:37 +00:00
|
|
|
#include <mapnik/image_util.hpp>
|
2015-01-08 21:55:51 +00:00
|
|
|
#include <mapnik/image_util_jpeg.hpp>
|
2015-01-07 20:44:31 +00:00
|
|
|
#include <mapnik/image_util_png.hpp>
|
2015-01-08 21:55:51 +00:00
|
|
|
#include <mapnik/image_util_tiff.hpp>
|
|
|
|
#include <mapnik/image_util_webp.hpp>
|
2012-11-01 17:02:08 +00:00
|
|
|
#include <mapnik/image_data.hpp>
|
2015-01-14 18:42:30 +00:00
|
|
|
#include <mapnik/image_data_any.hpp>
|
2015-01-15 16:53:21 +00:00
|
|
|
#include <mapnik/image_view_any.hpp>
|
2006-10-04 11:22:18 +00:00
|
|
|
#include <mapnik/memory.hpp>
|
1. hit_test implementation for geometry objects:
bool hit_test(double x, double y, double tol);
2. added image_view(unsigned x, unsigned y, unsigned width, unsigned height)
allowing to select region from image data e.g (in Python):
im = Image(2048,2048)
view = im.view(0,0,256,256)
save_to_file(filename,type, view)
3. changed envelope method to return vy value in datasource classes
4. features_at_point impl for shape and postgis plug-ins
2006-11-25 11:02:59 +00:00
|
|
|
#include <mapnik/image_view.hpp>
|
2011-08-31 02:28:14 +00:00
|
|
|
#include <mapnik/palette.hpp>
|
2010-06-18 15:38:29 +00:00
|
|
|
#include <mapnik/map.hpp>
|
2015-01-15 23:57:21 +00:00
|
|
|
#include <mapnik/color.hpp>
|
2012-02-21 18:59:11 +00:00
|
|
|
#include <mapnik/util/conversions.hpp>
|
2015-01-07 20:44:31 +00:00
|
|
|
#include <mapnik/util/variant.hpp>
|
2010-06-03 19:50:27 +00:00
|
|
|
|
2012-04-08 00:45:01 +00:00
|
|
|
// boost
|
2010-03-12 18:23:06 +00:00
|
|
|
#include <boost/tokenizer.hpp>
|
|
|
|
|
2015-01-14 18:42:30 +00:00
|
|
|
// agg
|
|
|
|
#include "agg_rendering_buffer.h"
|
|
|
|
#include "agg_pixfmt_rgba.h"
|
|
|
|
#include "agg_color_rgba.h"
|
|
|
|
|
2007-10-08 17:42:41 +00:00
|
|
|
// stl
|
|
|
|
#include <string>
|
2007-10-17 14:47:56 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
2009-04-07 15:48:51 +00:00
|
|
|
#include <sstream>
|
2013-01-04 03:27:53 +00:00
|
|
|
#include <algorithm>
|
2007-10-08 17:42:41 +00:00
|
|
|
|
2005-06-14 15:06:59 +00:00
|
|
|
namespace mapnik
|
2012-02-02 01:53:35 +00:00
|
|
|
{
|
2011-08-31 02:28:14 +00:00
|
|
|
|
2010-06-02 11:03:30 +00:00
|
|
|
template <typename T>
|
|
|
|
std::string save_to_string(T const& image,
|
2011-08-31 02:28:14 +00:00
|
|
|
std::string const& type,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette)
|
2010-06-02 11:03:30 +00:00
|
|
|
{
|
|
|
|
std::ostringstream ss(std::ios::out|std::ios::binary);
|
2011-08-31 02:28:14 +00:00
|
|
|
save_to_stream(image, ss, type, palette);
|
2010-06-02 11:03:30 +00:00
|
|
|
return ss.str();
|
|
|
|
}
|
2009-01-19 22:51:55 +00:00
|
|
|
|
2011-09-07 20:01:01 +00:00
|
|
|
template <typename T>
|
|
|
|
std::string save_to_string(T const& image,
|
|
|
|
std::string const& type)
|
|
|
|
{
|
|
|
|
std::ostringstream ss(std::ios::out|std::ios::binary);
|
|
|
|
save_to_stream(image, ss, type);
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
2010-06-02 11:03:30 +00:00
|
|
|
template <typename T>
|
|
|
|
void save_to_file(T const& image,
|
|
|
|
std::string const& filename,
|
2011-08-31 02:28:14 +00:00
|
|
|
std::string const& type,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette)
|
2010-06-02 11:03:30 +00:00
|
|
|
{
|
|
|
|
std::ofstream file (filename.c_str(), std::ios::out| std::ios::trunc|std::ios::binary);
|
|
|
|
if (file)
|
2009-07-13 22:36:16 +00:00
|
|
|
{
|
2015-01-14 18:42:30 +00:00
|
|
|
save_to_stream<T>(image, file, type, palette);
|
2010-03-12 18:23:06 +00:00
|
|
|
}
|
2010-06-02 11:03:30 +00:00
|
|
|
else throw ImageWriterException("Could not write file to " + filename );
|
|
|
|
}
|
2010-03-12 18:23:06 +00:00
|
|
|
|
2011-09-07 00:45:18 +00:00
|
|
|
template <typename T>
|
|
|
|
void save_to_file(T const& image,
|
|
|
|
std::string const& filename,
|
|
|
|
std::string const& type)
|
|
|
|
{
|
|
|
|
std::ofstream file (filename.c_str(), std::ios::out| std::ios::trunc|std::ios::binary);
|
|
|
|
if (file)
|
|
|
|
{
|
2015-01-14 18:42:30 +00:00
|
|
|
save_to_stream<T>(image, file, type);
|
2011-09-07 00:45:18 +00:00
|
|
|
}
|
|
|
|
else throw ImageWriterException("Could not write file to " + filename );
|
|
|
|
}
|
|
|
|
|
2015-01-09 00:31:14 +00:00
|
|
|
template <typename T>
|
|
|
|
void save_to_stream(T const& image,
|
2015-01-07 20:44:31 +00:00
|
|
|
std::ostream & stream,
|
|
|
|
std::string const& type,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette)
|
2015-01-14 18:42:30 +00:00
|
|
|
{
|
|
|
|
if (stream && image.width() > 0 && image.height() > 0)
|
|
|
|
{
|
|
|
|
std::string t = type;
|
|
|
|
std::transform(t.begin(), t.end(), t.begin(), ::tolower);
|
|
|
|
if (t == "png" || boost::algorithm::starts_with(t, "png"))
|
|
|
|
{
|
|
|
|
png_saver_pal visitor(stream, t, palette);
|
|
|
|
mapnik::util::apply_visitor(visitor, image);
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "tif"))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("palettes are not currently supported when writing to tiff format (yet)");
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "jpeg"))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("palettes are not currently supported when writing to jpeg format");
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("Could not write to empty stream" );
|
|
|
|
}
|
|
|
|
|
|
|
|
// This can be removed once image_data_any and image_view_any are the only
|
|
|
|
// items using this template
|
|
|
|
template <>
|
|
|
|
void save_to_stream<image_data_rgba8>(image_data_rgba8 const& image,
|
|
|
|
std::ostream & stream,
|
|
|
|
std::string const& type,
|
|
|
|
rgba_palette const& palette)
|
|
|
|
{
|
|
|
|
if (stream && image.width() > 0 && image.height() > 0)
|
|
|
|
{
|
|
|
|
std::string t = type;
|
|
|
|
std::transform(t.begin(), t.end(), t.begin(), ::tolower);
|
|
|
|
if (t == "png" || boost::algorithm::starts_with(t, "png"))
|
|
|
|
{
|
|
|
|
png_saver_pal visitor(stream, t, palette);
|
|
|
|
visitor(image);
|
|
|
|
//mapnik::util::apply_visitor(visitor, image);
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "tif"))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("palettes are not currently supported when writing to tiff format (yet)");
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "jpeg"))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("palettes are not currently supported when writing to jpeg format");
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("Could not write to empty stream" );
|
|
|
|
}
|
|
|
|
|
|
|
|
// This can be removed once image_data_any and image_view_any are the only
|
|
|
|
// items using this template
|
|
|
|
template <>
|
|
|
|
void save_to_stream<image_view_rgba8>(image_view_rgba8 const& image,
|
|
|
|
std::ostream & stream,
|
|
|
|
std::string const& type,
|
|
|
|
rgba_palette const& palette)
|
2010-06-02 11:03:30 +00:00
|
|
|
{
|
2012-02-10 20:14:53 +00:00
|
|
|
if (stream && image.width() > 0 && image.height() > 0)
|
2010-03-12 18:23:06 +00:00
|
|
|
{
|
2013-01-04 03:27:53 +00:00
|
|
|
std::string t = type;
|
|
|
|
std::transform(t.begin(), t.end(), t.begin(), ::tolower);
|
2012-02-10 19:20:00 +00:00
|
|
|
if (t == "png" || boost::algorithm::starts_with(t, "png"))
|
2009-07-13 22:36:16 +00:00
|
|
|
{
|
2015-01-09 00:31:14 +00:00
|
|
|
png_saver_pal visitor(stream, t, palette);
|
|
|
|
visitor(image);
|
|
|
|
//mapnik::util::apply_visitor(visitor, image);
|
2010-06-02 11:03:30 +00:00
|
|
|
}
|
2012-02-10 19:20:00 +00:00
|
|
|
else if (boost::algorithm::starts_with(t, "tif"))
|
2011-11-28 16:18:30 +00:00
|
|
|
{
|
|
|
|
throw ImageWriterException("palettes are not currently supported when writing to tiff format (yet)");
|
|
|
|
}
|
2012-02-10 19:20:00 +00:00
|
|
|
else if (boost::algorithm::starts_with(t, "jpeg"))
|
2011-09-07 00:45:18 +00:00
|
|
|
{
|
|
|
|
throw ImageWriterException("palettes are not currently supported when writing to jpeg format");
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
2012-02-02 01:53:35 +00:00
|
|
|
}
|
2011-09-07 00:45:18 +00:00
|
|
|
else throw ImageWriterException("Could not write to empty stream" );
|
|
|
|
}
|
|
|
|
|
2015-01-09 00:31:14 +00:00
|
|
|
template <typename T>
|
|
|
|
void save_to_stream(T const& image,
|
2011-09-07 00:45:18 +00:00
|
|
|
std::ostream & stream,
|
|
|
|
std::string const& type)
|
2015-01-14 18:42:30 +00:00
|
|
|
{
|
|
|
|
if (stream && image.width() > 0 && image.height() > 0)
|
|
|
|
{
|
|
|
|
std::string t = type;
|
|
|
|
std::transform(t.begin(), t.end(), t.begin(), ::tolower);
|
|
|
|
if (t == "png" || boost::algorithm::starts_with(t, "png"))
|
|
|
|
{
|
|
|
|
png_saver visitor(stream, t);
|
|
|
|
util::apply_visitor(visitor, image);
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "tif"))
|
|
|
|
{
|
|
|
|
tiff_saver visitor(stream, t);
|
|
|
|
util::apply_visitor(visitor, image);
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "jpeg"))
|
|
|
|
{
|
|
|
|
jpeg_saver visitor(stream, t);
|
|
|
|
util::apply_visitor(visitor, image);
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "webp"))
|
|
|
|
{
|
|
|
|
webp_saver visitor(stream, t);
|
|
|
|
util::apply_visitor(visitor, image);
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("Could not write to empty stream" );
|
|
|
|
}
|
|
|
|
|
|
|
|
// This can be removed once image_data_any and image_view_any are the only
|
|
|
|
// items using this template
|
|
|
|
template <>
|
|
|
|
void save_to_stream<image_data_rgba8>(image_data_rgba8 const& image,
|
|
|
|
std::ostream & stream,
|
|
|
|
std::string const& type)
|
|
|
|
{
|
|
|
|
if (stream && image.width() > 0 && image.height() > 0)
|
|
|
|
{
|
|
|
|
std::string t = type;
|
|
|
|
std::transform(t.begin(), t.end(), t.begin(), ::tolower);
|
|
|
|
if (t == "png" || boost::algorithm::starts_with(t, "png"))
|
|
|
|
{
|
|
|
|
png_saver visitor(stream, t);
|
|
|
|
visitor(image);
|
|
|
|
//util::apply_visitor(visitor, image);
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "tif"))
|
|
|
|
{
|
|
|
|
tiff_saver visitor(stream, t);
|
|
|
|
visitor(image);
|
|
|
|
//util::apply_visitor(visitor, image);
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "jpeg"))
|
|
|
|
{
|
|
|
|
jpeg_saver visitor(stream, t);
|
|
|
|
visitor(image);
|
|
|
|
//util::apply_visitor(visitor, image);
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "webp"))
|
|
|
|
{
|
|
|
|
webp_saver visitor(stream, t);
|
|
|
|
visitor(image);
|
|
|
|
//util::apply_visitor(visitor, image);
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("Could not write to empty stream" );
|
|
|
|
}
|
|
|
|
|
|
|
|
// This can be removed once image_data_any and image_view_any are the only
|
|
|
|
// items using this template
|
|
|
|
template <>
|
|
|
|
void save_to_stream<image_view_rgba8>(image_view_rgba8 const& image,
|
|
|
|
std::ostream & stream,
|
|
|
|
std::string const& type)
|
2011-09-07 00:45:18 +00:00
|
|
|
{
|
2012-02-10 20:14:53 +00:00
|
|
|
if (stream && image.width() > 0 && image.height() > 0)
|
2011-09-07 00:45:18 +00:00
|
|
|
{
|
2013-01-04 03:27:53 +00:00
|
|
|
std::string t = type;
|
|
|
|
std::transform(t.begin(), t.end(), t.begin(), ::tolower);
|
2012-02-10 19:20:00 +00:00
|
|
|
if (t == "png" || boost::algorithm::starts_with(t, "png"))
|
2011-09-07 00:45:18 +00:00
|
|
|
{
|
2015-01-09 00:31:14 +00:00
|
|
|
png_saver visitor(stream, t);
|
|
|
|
visitor(image);
|
|
|
|
//util::apply_visitor(visitor, image);
|
2011-09-07 00:45:18 +00:00
|
|
|
}
|
2012-02-10 19:20:00 +00:00
|
|
|
else if (boost::algorithm::starts_with(t, "tif"))
|
2011-11-28 15:59:19 +00:00
|
|
|
{
|
2015-01-09 00:31:14 +00:00
|
|
|
tiff_saver visitor(stream, t);
|
|
|
|
visitor(image);
|
|
|
|
//util::apply_visitor(visitor, image);
|
2011-11-28 15:59:19 +00:00
|
|
|
}
|
2012-02-10 19:20:00 +00:00
|
|
|
else if (boost::algorithm::starts_with(t, "jpeg"))
|
2010-06-02 11:03:30 +00:00
|
|
|
{
|
2015-01-09 00:31:14 +00:00
|
|
|
jpeg_saver visitor(stream, t);
|
|
|
|
visitor(image);
|
|
|
|
//util::apply_visitor(visitor, image);
|
2013-07-19 05:09:17 +00:00
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "webp"))
|
|
|
|
{
|
2015-01-09 00:31:14 +00:00
|
|
|
webp_saver visitor(stream, t);
|
|
|
|
visitor(image);
|
|
|
|
//util::apply_visitor(visitor, image);
|
2013-01-29 07:17:37 +00:00
|
|
|
}
|
2010-06-02 11:03:30 +00:00
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
2012-02-02 01:53:35 +00:00
|
|
|
}
|
2010-06-02 11:03:30 +00:00
|
|
|
else throw ImageWriterException("Could not write to empty stream" );
|
|
|
|
}
|
2011-08-31 02:28:14 +00:00
|
|
|
|
2010-06-02 11:03:30 +00:00
|
|
|
template <typename T>
|
2011-09-07 00:45:18 +00:00
|
|
|
void save_to_file(T const& image, std::string const& filename)
|
|
|
|
{
|
|
|
|
boost::optional<std::string> type = type_from_filename(filename);
|
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
save_to_file<T>(image, filename, *type);
|
|
|
|
}
|
2013-02-09 01:14:39 +00:00
|
|
|
else throw ImageWriterException("Could not write file to " + filename );
|
2011-09-07 00:45:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2015-01-08 21:55:51 +00:00
|
|
|
void save_to_file(T const& image, std::string const& filename, rgba_palette const& palette)
|
2010-06-02 11:03:30 +00:00
|
|
|
{
|
|
|
|
boost::optional<std::string> type = type_from_filename(filename);
|
|
|
|
if (type)
|
2009-07-13 22:36:16 +00:00
|
|
|
{
|
2011-08-31 02:28:14 +00:00
|
|
|
save_to_file<T>(image, filename, *type, palette);
|
2009-07-13 22:36:16 +00:00
|
|
|
}
|
2013-02-09 01:14:39 +00:00
|
|
|
else throw ImageWriterException("Could not write file to " + filename );
|
2010-06-02 11:03:30 +00:00
|
|
|
}
|
2010-01-11 18:55:30 +00:00
|
|
|
|
2015-01-14 18:42:30 +00:00
|
|
|
// image_data_rgba8
|
2014-12-04 10:02:42 +00:00
|
|
|
template void save_to_file<image_data_rgba8>(image_data_rgba8 const&,
|
2015-01-14 18:42:30 +00:00
|
|
|
std::string const&,
|
|
|
|
std::string const&);
|
2011-09-07 00:45:18 +00:00
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template void save_to_file<image_data_rgba8>(image_data_rgba8 const&,
|
2015-01-14 18:42:30 +00:00
|
|
|
std::string const&,
|
|
|
|
std::string const&,
|
|
|
|
rgba_palette const& palette);
|
2009-07-26 01:15:44 +00:00
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template void save_to_file<image_data_rgba8>(image_data_rgba8 const&,
|
2015-01-14 18:42:30 +00:00
|
|
|
std::string const&);
|
2011-09-07 00:45:18 +00:00
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template void save_to_file<image_data_rgba8>(image_data_rgba8 const&,
|
2015-01-14 18:42:30 +00:00
|
|
|
std::string const&,
|
|
|
|
rgba_palette const& palette);
|
2007-12-06 12:14:29 +00:00
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template std::string save_to_string<image_data_rgba8>(image_data_rgba8 const&,
|
2015-01-14 18:42:30 +00:00
|
|
|
std::string const&);
|
2011-09-07 20:01:01 +00:00
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template std::string save_to_string<image_data_rgba8>(image_data_rgba8 const&,
|
2015-01-14 18:42:30 +00:00
|
|
|
std::string const&,
|
|
|
|
rgba_palette const& palette);
|
2009-01-19 22:51:55 +00:00
|
|
|
|
2015-01-14 18:42:30 +00:00
|
|
|
// image_view_rgba8
|
2015-01-09 21:49:31 +00:00
|
|
|
template void save_to_file<image_view_rgba8> (image_view_rgba8 const&,
|
2015-01-14 18:42:30 +00:00
|
|
|
std::string const&,
|
|
|
|
std::string const&);
|
2011-09-07 00:45:18 +00:00
|
|
|
|
2015-01-09 21:49:31 +00:00
|
|
|
template void save_to_file<image_view_rgba8> (image_view_rgba8 const&,
|
2015-01-14 18:42:30 +00:00
|
|
|
std::string const&,
|
|
|
|
std::string const&,
|
|
|
|
rgba_palette const& palette);
|
2011-09-07 00:45:18 +00:00
|
|
|
|
2015-01-09 21:49:31 +00:00
|
|
|
template void save_to_file<image_view_rgba8> (image_view_rgba8 const&,
|
2015-01-14 18:42:30 +00:00
|
|
|
std::string const&);
|
2012-02-02 01:53:35 +00:00
|
|
|
|
2015-01-09 21:49:31 +00:00
|
|
|
template void save_to_file<image_view_rgba8> (image_view_rgba8 const&,
|
2015-01-14 18:42:30 +00:00
|
|
|
std::string const&,
|
|
|
|
rgba_palette const& palette);
|
2012-02-02 01:53:35 +00:00
|
|
|
|
2015-01-09 21:49:31 +00:00
|
|
|
template std::string save_to_string<image_view_rgba8> (image_view_rgba8 const&,
|
2015-01-14 18:42:30 +00:00
|
|
|
std::string const&);
|
2012-02-02 01:53:35 +00:00
|
|
|
|
2015-01-09 21:49:31 +00:00
|
|
|
template std::string save_to_string<image_view_rgba8> (image_view_rgba8 const&,
|
2015-01-14 18:42:30 +00:00
|
|
|
std::string const&,
|
|
|
|
rgba_palette const& palette);
|
|
|
|
|
|
|
|
// image_data_any
|
|
|
|
template void save_to_file<image_data_any>(image_data_any const&,
|
|
|
|
std::string const&,
|
|
|
|
std::string const&);
|
|
|
|
|
|
|
|
template void save_to_file<image_data_any>(image_data_any const&,
|
|
|
|
std::string const&,
|
|
|
|
std::string const&,
|
|
|
|
rgba_palette const& palette);
|
|
|
|
|
|
|
|
template void save_to_file<image_data_any>(image_data_any const&,
|
|
|
|
std::string const&);
|
|
|
|
|
|
|
|
template void save_to_file<image_data_any>(image_data_any const&,
|
|
|
|
std::string const&,
|
|
|
|
rgba_palette const& palette);
|
2009-01-19 22:51:55 +00:00
|
|
|
|
2015-01-14 18:42:30 +00:00
|
|
|
template std::string save_to_string<image_data_any>(image_data_any const&,
|
|
|
|
std::string const&);
|
|
|
|
|
|
|
|
template std::string save_to_string<image_data_any>(image_data_any const&,
|
|
|
|
std::string const&,
|
|
|
|
rgba_palette const& palette);
|
|
|
|
|
2015-01-15 05:20:15 +00:00
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
struct is_solid_visitor
|
|
|
|
{
|
|
|
|
template <typename T>
|
|
|
|
bool operator() (T const & data)
|
|
|
|
{
|
|
|
|
using pixel_type = typename T::pixel_type;
|
|
|
|
if (data.width() > 0 && data.height() > 0)
|
|
|
|
{
|
|
|
|
pixel_type const* first_row = data.getRow(0);
|
|
|
|
pixel_type const first_pixel = first_row[0];
|
|
|
|
for (unsigned y = 0; y < data.height(); ++y)
|
|
|
|
{
|
|
|
|
pixel_type const * row = data.getRow(y);
|
|
|
|
for (unsigned x = 0; x < data.width(); ++x)
|
|
|
|
{
|
|
|
|
if (first_pixel != row[x])
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template bool is_solid_visitor::operator()<image_data_rgba8> (image_data_rgba8 const& data);
|
|
|
|
template bool is_solid_visitor::operator()<image_data_gray8> (image_data_gray8 const& data);
|
|
|
|
template bool is_solid_visitor::operator()<image_data_gray16> (image_data_gray16 const& data);
|
|
|
|
template bool is_solid_visitor::operator()<image_data_gray32f> (image_data_gray32f const& data);
|
|
|
|
template bool is_solid_visitor::operator()<image_view_rgba8> (image_view_rgba8 const& data);
|
|
|
|
template bool is_solid_visitor::operator()<image_view_gray8> (image_view_gray8 const& data);
|
|
|
|
template bool is_solid_visitor::operator()<image_view_gray16> (image_view_gray16 const& data);
|
|
|
|
template bool is_solid_visitor::operator()<image_view_gray32f> (image_view_gray32f const& data);
|
|
|
|
|
2015-01-15 16:53:21 +00:00
|
|
|
template<>
|
|
|
|
bool is_solid_visitor::operator()<image_data_null> (image_data_null const&)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-01-15 05:20:15 +00:00
|
|
|
} // end detail ns
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
MAPNIK_DECL bool is_solid(T const& image)
|
|
|
|
{
|
|
|
|
return util::apply_visitor(detail::is_solid_visitor(), image);
|
|
|
|
}
|
|
|
|
|
2015-01-15 16:53:21 +00:00
|
|
|
template bool is_solid<image_data_any> (image_data_any const&);
|
|
|
|
template bool is_solid<image_view_any> (image_view_any const&);
|
|
|
|
|
2015-01-15 05:20:15 +00:00
|
|
|
// Temporary until image_data_rgba8 is removed from passing
|
|
|
|
template <>
|
|
|
|
MAPNIK_DECL bool is_solid<image_data_rgba8>(image_data_rgba8 const& image)
|
|
|
|
{
|
|
|
|
detail::is_solid_visitor visitor;
|
|
|
|
return visitor(image);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Temporary until image_view_rgba8 is removed from passing
|
|
|
|
template <>
|
|
|
|
MAPNIK_DECL bool is_solid<image_view_rgba8>(image_view_rgba8 const& image)
|
|
|
|
{
|
|
|
|
detail::is_solid_visitor visitor;
|
|
|
|
return visitor(image);
|
|
|
|
}
|
2015-01-14 18:42:30 +00:00
|
|
|
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
struct premultiply_visitor
|
|
|
|
{
|
|
|
|
template <typename T>
|
2015-01-15 23:57:21 +00:00
|
|
|
bool operator() (T & data)
|
2015-01-14 18:42:30 +00:00
|
|
|
{
|
|
|
|
throw std::runtime_error("Error: Premultiply with " + std::string(typeid(data).name()) + " is not supported");
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
2015-01-15 23:57:21 +00:00
|
|
|
bool premultiply_visitor::operator()<image_data_rgba8> (image_data_rgba8 & data)
|
2015-01-14 18:42:30 +00:00
|
|
|
{
|
|
|
|
if (!data.get_premultiplied())
|
|
|
|
{
|
|
|
|
agg::rendering_buffer buffer(data.getBytes(),data.width(),data.height(),data.width() * 4);
|
|
|
|
agg::pixfmt_rgba32 pixf(buffer);
|
|
|
|
pixf.premultiply();
|
|
|
|
data.set_premultiplied(true);
|
2015-01-15 23:57:21 +00:00
|
|
|
return true;
|
2015-01-14 18:42:30 +00:00
|
|
|
}
|
2015-01-15 23:57:21 +00:00
|
|
|
return false;
|
2015-01-14 18:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct demultiply_visitor
|
|
|
|
{
|
|
|
|
template <typename T>
|
2015-01-15 23:57:21 +00:00
|
|
|
bool operator() (T & data)
|
2015-01-14 18:42:30 +00:00
|
|
|
{
|
|
|
|
throw std::runtime_error("Error: Premultiply with " + std::string(typeid(data).name()) + " is not supported");
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
2015-01-15 23:57:21 +00:00
|
|
|
bool demultiply_visitor::operator()<image_data_rgba8> (image_data_rgba8 & data)
|
2015-01-14 18:42:30 +00:00
|
|
|
{
|
|
|
|
if (data.get_premultiplied())
|
|
|
|
{
|
|
|
|
agg::rendering_buffer buffer(data.getBytes(),data.width(),data.height(),data.width() * 4);
|
|
|
|
agg::pixfmt_rgba32_pre pixf(buffer);
|
|
|
|
pixf.demultiply();
|
|
|
|
data.set_premultiplied(false);
|
2015-01-15 23:57:21 +00:00
|
|
|
return true;
|
2015-01-14 18:42:30 +00:00
|
|
|
}
|
2015-01-15 23:57:21 +00:00
|
|
|
return false;
|
2015-01-14 18:42:30 +00:00
|
|
|
}
|
|
|
|
|
2015-01-14 21:24:16 +00:00
|
|
|
struct set_premultiplied_visitor
|
|
|
|
{
|
|
|
|
set_premultiplied_visitor(bool status)
|
|
|
|
: status_(status) {}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void operator() (T & data)
|
|
|
|
{
|
|
|
|
data.set_premultiplied(status_);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
bool status_;
|
|
|
|
};
|
|
|
|
|
2015-01-14 18:42:30 +00:00
|
|
|
} // end detail ns
|
|
|
|
|
|
|
|
template <typename T>
|
2015-01-15 23:57:21 +00:00
|
|
|
MAPNIK_DECL bool premultiply_alpha(T & image)
|
2015-01-14 18:42:30 +00:00
|
|
|
{
|
2015-01-15 23:57:21 +00:00
|
|
|
return util::apply_visitor(detail::premultiply_visitor(), image);
|
2015-01-14 18:42:30 +00:00
|
|
|
}
|
|
|
|
|
2015-01-15 23:57:21 +00:00
|
|
|
template bool premultiply_alpha<image_data_any> (image_data_any &);
|
2015-01-14 18:42:30 +00:00
|
|
|
|
|
|
|
// Temporary, can be removed once image_view_any and image_data_any are the only ones passed
|
|
|
|
template <>
|
2015-01-15 23:57:21 +00:00
|
|
|
MAPNIK_DECL bool premultiply_alpha<image_data_rgba8>(image_data_rgba8 & image)
|
2015-01-14 18:42:30 +00:00
|
|
|
{
|
|
|
|
detail::premultiply_visitor visit;
|
2015-01-15 23:57:21 +00:00
|
|
|
return visit(image);
|
2015-01-14 18:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2015-01-15 23:57:21 +00:00
|
|
|
MAPNIK_DECL bool demultiply_alpha(T & image)
|
2015-01-14 18:42:30 +00:00
|
|
|
{
|
2015-01-15 23:57:21 +00:00
|
|
|
return util::apply_visitor(detail::demultiply_visitor(), image);
|
2005-06-14 15:06:59 +00:00
|
|
|
}
|
2015-01-14 18:42:30 +00:00
|
|
|
|
2015-01-15 23:57:21 +00:00
|
|
|
template bool demultiply_alpha<image_data_any> (image_data_any &);
|
2015-01-14 18:42:30 +00:00
|
|
|
|
|
|
|
// Temporary, can be removed once image_view_any and image_data_any are the only ones passed
|
|
|
|
template <>
|
2015-01-15 23:57:21 +00:00
|
|
|
MAPNIK_DECL bool demultiply_alpha<image_data_rgba8>(image_data_rgba8 & image)
|
2015-01-14 18:42:30 +00:00
|
|
|
{
|
|
|
|
detail::demultiply_visitor visit;
|
2015-01-15 23:57:21 +00:00
|
|
|
return visit(image);
|
2015-01-14 18:42:30 +00:00
|
|
|
}
|
|
|
|
|
2015-01-14 21:24:16 +00:00
|
|
|
template <typename T>
|
|
|
|
MAPNIK_DECL void set_premultiplied_alpha(T & image, bool status)
|
|
|
|
{
|
|
|
|
util::apply_visitor(detail::set_premultiplied_visitor(status), image);
|
|
|
|
}
|
|
|
|
|
|
|
|
template void set_premultiplied_alpha<image_data_any> (image_data_any &, bool);
|
|
|
|
|
|
|
|
// Temporary, can be removed once image_view_any and image_data_any are the only ones passed
|
|
|
|
template <>
|
|
|
|
MAPNIK_DECL void set_premultiplied_alpha<image_data_rgba8>(image_data_rgba8 & image, bool status)
|
|
|
|
{
|
|
|
|
detail::set_premultiplied_visitor visit(status);
|
|
|
|
visit(image);
|
|
|
|
}
|
|
|
|
|
2015-01-15 23:57:21 +00:00
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
struct visitor_set_alpha
|
|
|
|
{
|
|
|
|
visitor_set_alpha(float opacity)
|
|
|
|
: opacity_(opacity) {}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void operator() (T & data)
|
|
|
|
{
|
|
|
|
throw std::runtime_error("Error: set_alpha with " + std::string(typeid(data).name()) + " is not supported");
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
float opacity_;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
void visitor_set_alpha::operator()<image_data_rgba8> (image_data_rgba8 & data)
|
|
|
|
{
|
|
|
|
using pixel_type = typename image_data_rgba8::pixel_type;
|
|
|
|
for (unsigned int y = 0; y < data.height(); ++y)
|
|
|
|
{
|
|
|
|
pixel_type* row_to = data.getRow(y);
|
|
|
|
for (unsigned int x = 0; x < data.width(); ++x)
|
|
|
|
{
|
|
|
|
pixel_type rgba = row_to[x];
|
|
|
|
pixel_type a0 = (rgba >> 24) & 0xff;
|
|
|
|
pixel_type a1 = pixel_type( ((rgba >> 24) & 0xff) * opacity_ );
|
|
|
|
//unsigned a1 = opacity;
|
|
|
|
if (a0 == a1) continue;
|
|
|
|
|
|
|
|
pixel_type r = rgba & 0xff;
|
|
|
|
pixel_type g = (rgba >> 8 ) & 0xff;
|
|
|
|
pixel_type b = (rgba >> 16) & 0xff;
|
|
|
|
|
|
|
|
row_to[x] = (a1 << 24)| (b << 16) | (g << 8) | (r) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end detail ns
|
|
|
|
|
|
|
|
template<>
|
|
|
|
MAPNIK_DECL void set_alpha<image_data_any> (image_data_any & data, float opacity)
|
|
|
|
{
|
|
|
|
// Prior to calling the data must not be premultiplied
|
|
|
|
bool remultiply = mapnik::demultiply_alpha(data);
|
|
|
|
util::apply_visitor(detail::visitor_set_alpha(opacity), data);
|
|
|
|
if (remultiply)
|
|
|
|
{
|
|
|
|
mapnik::premultiply_alpha(data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TEMPORARY can be removed once image_data_any is only way it is being passed.
|
|
|
|
template<>
|
|
|
|
MAPNIK_DECL void set_alpha<image_data_rgba8> (image_data_rgba8 & data, float opacity)
|
|
|
|
{
|
|
|
|
// Prior to calling the data must not be premultiplied
|
|
|
|
bool remultiply = mapnik::demultiply_alpha(data);
|
|
|
|
detail::visitor_set_alpha visit(opacity);
|
|
|
|
visit(data);
|
|
|
|
if (remultiply)
|
|
|
|
{
|
|
|
|
mapnik::premultiply_alpha(data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-16 02:26:20 +00:00
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
struct visitor_set_grayscale_to_alpha
|
|
|
|
{
|
|
|
|
template <typename T>
|
|
|
|
void operator() (T & data)
|
|
|
|
{
|
|
|
|
throw std::runtime_error("Error: set_grayscale_to_alpha with " + std::string(typeid(data).name()) + " is not supported");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
void visitor_set_grayscale_to_alpha::operator()<image_data_rgba8> (image_data_rgba8 & data)
|
|
|
|
{
|
|
|
|
using pixel_type = typename image_data_rgba8::pixel_type;
|
|
|
|
for (unsigned int y = 0; y < data.height(); ++y)
|
|
|
|
{
|
|
|
|
pixel_type* row_from = data.getRow(y);
|
|
|
|
for (unsigned int x = 0; x < data.width(); ++x)
|
|
|
|
{
|
|
|
|
pixel_type rgba = row_from[x];
|
|
|
|
pixel_type r = rgba & 0xff;
|
|
|
|
pixel_type g = (rgba >> 8 ) & 0xff;
|
|
|
|
pixel_type b = (rgba >> 16) & 0xff;
|
|
|
|
|
|
|
|
// magic numbers for grayscale
|
|
|
|
pixel_type a = static_cast<pixel_type>(std::ceil((r * .3) + (g * .59) + (b * .11)));
|
|
|
|
|
|
|
|
row_from[x] = (a << 24)| (255 << 16) | (255 << 8) | (255) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end detail ns
|
|
|
|
|
|
|
|
template<>
|
|
|
|
MAPNIK_DECL void set_grayscale_to_alpha<image_data_any> (image_data_any & data)
|
|
|
|
{
|
|
|
|
// Prior to calling the data must not be premultiplied
|
|
|
|
bool remultiply = mapnik::demultiply_alpha(data);
|
|
|
|
util::apply_visitor(detail::visitor_set_grayscale_to_alpha(), data);
|
|
|
|
if (remultiply)
|
|
|
|
{
|
|
|
|
mapnik::premultiply_alpha(data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TEMPORARY can be removed once image_data_any is only way it is being passed.
|
|
|
|
template<>
|
|
|
|
MAPNIK_DECL void set_grayscale_to_alpha<image_data_rgba8> (image_data_rgba8 & data)
|
|
|
|
{
|
|
|
|
// Prior to calling the data must not be premultiplied
|
|
|
|
bool remultiply = mapnik::demultiply_alpha(data);
|
|
|
|
detail::visitor_set_grayscale_to_alpha visit;
|
|
|
|
visit(data);
|
|
|
|
if (remultiply)
|
|
|
|
{
|
|
|
|
mapnik::premultiply_alpha(data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
struct visitor_set_color_to_alpha
|
|
|
|
{
|
|
|
|
visitor_set_color_to_alpha(color const& c)
|
|
|
|
: c_(c) {}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void operator() (T & data)
|
|
|
|
{
|
|
|
|
throw std::runtime_error("Error: set_color_to_alpha with " + std::string(typeid(data).name()) + " is not supported");
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
color const& c_;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
void visitor_set_color_to_alpha::operator()<image_data_rgba8> (image_data_rgba8 & data)
|
|
|
|
{
|
|
|
|
using pixel_type = typename image_data_rgba8::pixel_type;
|
|
|
|
for (unsigned y = 0; y < data.height(); ++y)
|
|
|
|
{
|
|
|
|
pixel_type* row_from = data.getRow(y);
|
|
|
|
for (unsigned x = 0; x < data.width(); ++x)
|
|
|
|
{
|
|
|
|
pixel_type rgba = row_from[x];
|
|
|
|
pixel_type r = rgba & 0xff;
|
|
|
|
pixel_type g = (rgba >> 8 ) & 0xff;
|
|
|
|
pixel_type b = (rgba >> 16) & 0xff;
|
|
|
|
if (r == c_.red() && g == c_.green() && b == c_.blue())
|
|
|
|
{
|
|
|
|
row_from[x] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end detail ns
|
|
|
|
|
|
|
|
template<>
|
|
|
|
MAPNIK_DECL void set_color_to_alpha<image_data_any> (image_data_any & data, color const& c)
|
|
|
|
{
|
|
|
|
// Prior to calling the data must not be premultiplied
|
|
|
|
bool remultiply = mapnik::demultiply_alpha(data);
|
|
|
|
util::apply_visitor(detail::visitor_set_color_to_alpha(c), data);
|
|
|
|
if (remultiply)
|
|
|
|
{
|
|
|
|
mapnik::premultiply_alpha(data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TEMPORARY can be removed once image_data_any is only way it is being passed.
|
|
|
|
template<>
|
|
|
|
MAPNIK_DECL void set_color_to_alpha<image_data_rgba8> (image_data_rgba8 & data, color const& c)
|
|
|
|
{
|
|
|
|
// Prior to calling the data must not be premultiplied
|
|
|
|
bool remultiply = mapnik::demultiply_alpha(data);
|
|
|
|
detail::visitor_set_color_to_alpha visit(c);
|
|
|
|
visit(data);
|
|
|
|
if (remultiply)
|
|
|
|
{
|
|
|
|
mapnik::premultiply_alpha(data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-16 19:06:52 +00:00
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
template <typename T1>
|
|
|
|
struct visitor_fill
|
|
|
|
{
|
|
|
|
visitor_fill(T1 const& val)
|
|
|
|
: val_(val) {}
|
|
|
|
|
|
|
|
template <typename T2>
|
|
|
|
void operator() (T2 & data)
|
|
|
|
{
|
|
|
|
using pixel_type = typename T2::pixel_type;
|
|
|
|
pixel_type val = static_cast<pixel_type>(val_);
|
|
|
|
data.set(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
T1 const& val_;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct visitor_fill<color>
|
|
|
|
{
|
|
|
|
visitor_fill(color const& val)
|
|
|
|
: val_(val) {}
|
|
|
|
|
|
|
|
template <typename T2>
|
|
|
|
void operator() (T2 & data)
|
|
|
|
{
|
|
|
|
using pixel_type = typename T2::pixel_type;
|
|
|
|
pixel_type val = static_cast<pixel_type>(val_.rgba());
|
|
|
|
data.set(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
color const& val_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end detail ns
|
|
|
|
|
|
|
|
// For all the generic data types.
|
|
|
|
template <typename T1, typename T2>
|
|
|
|
MAPNIK_DECL void fill (T1 & data, T2 const& val)
|
|
|
|
{
|
|
|
|
util::apply_visitor(detail::visitor_fill<T2>(val), data);
|
|
|
|
}
|
|
|
|
|
|
|
|
template void fill(image_data_any &, color const&);
|
|
|
|
template void fill(image_data_any &, uint32_t const&);
|
|
|
|
template void fill(image_data_any &, int32_t const&);
|
|
|
|
template void fill(image_data_any &, uint16_t const&);
|
|
|
|
template void fill(image_data_any &, int16_t const&);
|
|
|
|
template void fill(image_data_any &, uint8_t const&);
|
|
|
|
template void fill(image_data_any &, int8_t const&);
|
|
|
|
template void fill(image_data_any &, float const&);
|
|
|
|
template void fill(image_data_any &, double const&);
|
|
|
|
|
|
|
|
|
|
|
|
// Temporary remove these later!
|
|
|
|
template <>
|
|
|
|
MAPNIK_DECL void fill<image_data_rgba8, color> (image_data_rgba8 & data , color const& val)
|
|
|
|
{
|
|
|
|
detail::visitor_fill<color> visitor(val);
|
|
|
|
visitor(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Temporary remove these later!
|
|
|
|
template <>
|
|
|
|
MAPNIK_DECL void fill<image_data_rgba8, uint32_t> (image_data_rgba8 & data , uint32_t const& val)
|
|
|
|
{
|
|
|
|
detail::visitor_fill<uint32_t> visitor(val);
|
|
|
|
visitor(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Temporary remove these later!
|
|
|
|
template <>
|
|
|
|
MAPNIK_DECL void fill<image_data_rgba8, int32_t> (image_data_rgba8 & data , int32_t const& val)
|
|
|
|
{
|
|
|
|
detail::visitor_fill<int32_t> visitor(val);
|
|
|
|
visitor(data);
|
|
|
|
}
|
|
|
|
|
2015-01-14 18:42:30 +00:00
|
|
|
} // end ns
|