2020-02-07 14:53:06 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2024-07-22 11:20:47 +02:00
|
|
|
* Copyright (C) 2024 Artem Pavlenko
|
2020-02-07 14:53:06 +01: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,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#include "catch.hpp"
|
|
|
|
|
|
|
|
#include <mapnik/debug.hpp>
|
|
|
|
#include <mapnik/marker.hpp>
|
|
|
|
#include <mapnik/marker_cache.hpp>
|
|
|
|
#include <mapnik/image_util.hpp>
|
|
|
|
#include <mapnik/svg/svg_parser.hpp>
|
|
|
|
#include <mapnik/svg/svg_converter.hpp>
|
|
|
|
#include <mapnik/svg/svg_path_adapter.hpp>
|
|
|
|
#include <mapnik/svg/svg_renderer_agg.hpp>
|
|
|
|
#include <mapnik/svg/svg_path_attributes.hpp>
|
|
|
|
#include <boost/range/combine.hpp>
|
|
|
|
|
2020-11-19 15:30:30 +01:00
|
|
|
#include <mapnik/warning.hpp>
|
|
|
|
MAPNIK_DISABLE_WARNING_PUSH
|
2020-02-07 14:53:06 +01:00
|
|
|
#include <mapnik/warning_ignore_agg.hpp>
|
|
|
|
#include "agg_rasterizer_scanline_aa.h"
|
|
|
|
#include "agg_basics.h"
|
|
|
|
#include "agg_rendering_buffer.h"
|
|
|
|
#include "agg_renderer_base.h"
|
|
|
|
#include "agg_pixfmt_rgba.h"
|
|
|
|
#include "agg_scanline_u.h"
|
2020-11-19 15:30:30 +01:00
|
|
|
MAPNIK_DISABLE_WARNING_POP
|
2020-02-07 14:53:06 +01:00
|
|
|
|
2022-01-26 23:25:53 +01:00
|
|
|
namespace {
|
2020-02-07 14:53:06 +01:00
|
|
|
|
|
|
|
mapnik::image_rgba8 render_svg(std::string const& filename, double scale_factor)
|
|
|
|
{
|
2022-11-18 16:17:58 +01:00
|
|
|
using color_type = agg::rgba8;
|
|
|
|
using order_type = agg::order_rgba;
|
|
|
|
using blender_type = agg::comp_op_adaptor_rgba_pre<color_type, order_type>; // comp blender
|
|
|
|
using buf_type = agg::rendering_buffer;
|
|
|
|
using pixfmt = agg::pixfmt_custom_blend_rgba<blender_type, buf_type>;
|
2022-01-26 23:25:53 +01:00
|
|
|
using renderer_base = agg::renderer_base<pixfmt>;
|
|
|
|
using renderer_solid = agg::renderer_scanline_aa_solid<renderer_base>;
|
2020-02-07 14:53:06 +01:00
|
|
|
|
2022-01-26 23:25:53 +01:00
|
|
|
agg::rasterizer_scanline_aa<> ras_ptr;
|
|
|
|
agg::scanline_u8 sl;
|
2022-11-18 16:17:58 +01:00
|
|
|
|
2022-01-26 23:25:53 +01:00
|
|
|
std::shared_ptr<mapnik::marker const> marker = mapnik::marker_cache::instance().find(filename, false);
|
|
|
|
mapnik::marker_svg const& svg = mapnik::util::get<mapnik::marker_svg>(*marker);
|
|
|
|
double svg_width, svg_height;
|
|
|
|
std::tie(svg_width, svg_height) = svg.dimensions();
|
|
|
|
int image_width = static_cast<int>(std::round(svg_width));
|
|
|
|
int image_height = static_cast<int>(std::round(svg_height));
|
2020-02-07 14:53:06 +01:00
|
|
|
|
2022-01-26 23:25:53 +01:00
|
|
|
mapnik::image_rgba8 im(image_width, image_height, true, true);
|
|
|
|
agg::rendering_buffer buf(im.bytes(), im.width(), im.height(), im.row_size());
|
|
|
|
pixfmt pixf(buf);
|
|
|
|
renderer_base renb(pixf);
|
2020-02-07 14:53:06 +01:00
|
|
|
|
2022-01-26 23:25:53 +01:00
|
|
|
agg::trans_affine mtx = agg::trans_affine_translation(-0.5 * svg_width, -0.5 * svg_height);
|
|
|
|
mtx.scale(scale_factor);
|
|
|
|
mtx.translate(0.5 * svg_width, 0.5 * svg_height);
|
2020-02-07 14:53:06 +01:00
|
|
|
|
2022-01-26 23:25:53 +01:00
|
|
|
mapnik::svg::vertex_stl_adapter<mapnik::svg::svg_path_storage> stl_storage(svg.get_data()->source());
|
|
|
|
mapnik::svg::svg_path_adapter svg_path(stl_storage);
|
2022-11-25 14:54:41 +01:00
|
|
|
mapnik::svg::renderer_agg<mapnik::svg_path_adapter, mapnik::svg_attribute_type, renderer_solid, pixfmt> renderer(
|
|
|
|
svg_path,
|
|
|
|
svg.get_data()->svg_group());
|
2022-01-26 23:25:53 +01:00
|
|
|
double opacity = 1.0;
|
|
|
|
renderer.render(ras_ptr, sl, renb, mtx, opacity, {0, 0, svg_width, svg_height});
|
|
|
|
return im;
|
2020-02-07 14:53:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool equal(mapnik::image_rgba8 const& im1, mapnik::image_rgba8 const& im2)
|
|
|
|
{
|
|
|
|
if (im1.width() != im2.width() || im1.height() != im2.height())
|
|
|
|
return false;
|
|
|
|
|
2022-01-26 23:25:53 +01:00
|
|
|
for (auto tup : boost::combine(im1, im2))
|
2020-02-07 14:53:06 +01:00
|
|
|
{
|
2022-01-26 23:25:53 +01:00
|
|
|
if (boost::get<0>(tup) != boost::get<1>(tup))
|
|
|
|
return false;
|
2020-02-07 14:53:06 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2022-01-26 23:25:53 +01:00
|
|
|
} // namespace
|
2020-02-07 14:53:06 +01:00
|
|
|
|
2022-01-26 23:25:53 +01:00
|
|
|
TEST_CASE("SVG renderer")
|
|
|
|
{
|
2020-02-07 14:53:06 +01:00
|
|
|
SECTION("SVG octocat inline/css")
|
|
|
|
{
|
|
|
|
double scale_factor = 1.0;
|
|
|
|
std::string octocat_inline("./test/data/svg/octocat.svg");
|
|
|
|
std::string octocat_css("./test/data/svg/octocat-css.svg");
|
2022-11-18 16:17:58 +01:00
|
|
|
auto image1 = render_svg(octocat_inline, scale_factor);
|
|
|
|
auto image2 = render_svg(octocat_css, scale_factor);
|
2020-02-07 14:53:06 +01:00
|
|
|
REQUIRE(equal(image1, image2));
|
|
|
|
}
|
|
|
|
}
|