2010-06-19 22:52:44 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2011-10-23 15:04:25 +02:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2010-06-19 22:52:44 +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,
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
//$Id$
|
|
|
|
|
|
|
|
// mapnik
|
|
|
|
#include <mapnik/agg_renderer.hpp>
|
|
|
|
#include <mapnik/agg_rasterizer.hpp>
|
|
|
|
|
|
|
|
// agg
|
|
|
|
#include "agg_basics.h"
|
|
|
|
#include "agg_rendering_buffer.h"
|
|
|
|
#include "agg_pixfmt_rgba.h"
|
|
|
|
#include "agg_rasterizer_scanline_aa.h"
|
|
|
|
#include "agg_scanline_u.h"
|
|
|
|
// for polygon_symbolizer
|
|
|
|
#include "agg_renderer_scanline.h"
|
|
|
|
|
|
|
|
// stl
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace mapnik {
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void agg_renderer<T>::process(polygon_symbolizer const& sym,
|
|
|
|
Feature const& feature,
|
|
|
|
proj_transform const& prj_trans)
|
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
typedef coord_transform2<CoordTransform,geometry_type> path_type;
|
2010-06-19 22:52:44 +02:00
|
|
|
typedef agg::renderer_base<agg::pixfmt_rgba32_plain> ren_base;
|
|
|
|
typedef agg::renderer_scanline_aa_solid<ren_base> renderer;
|
|
|
|
|
|
|
|
color const& fill_ = sym.get_fill();
|
|
|
|
agg::scanline_u8 sl;
|
|
|
|
|
|
|
|
agg::rendering_buffer buf(pixmap_.raw_data(),width_,height_, width_ * 4);
|
|
|
|
agg::pixfmt_rgba32_plain pixf(buf);
|
|
|
|
|
|
|
|
ren_base renb(pixf);
|
|
|
|
unsigned r=fill_.red();
|
|
|
|
unsigned g=fill_.green();
|
|
|
|
unsigned b=fill_.blue();
|
|
|
|
unsigned a=fill_.alpha();
|
|
|
|
renderer ren(renb);
|
|
|
|
|
|
|
|
ras_ptr->reset();
|
2012-01-13 18:20:03 +01:00
|
|
|
switch (sym.get_gamma_method())
|
|
|
|
{
|
|
|
|
case GAMMA_POWER:
|
|
|
|
ras_ptr->gamma(agg::gamma_power(sym.get_gamma()));
|
|
|
|
break;
|
|
|
|
case GAMMA_LINEAR:
|
|
|
|
ras_ptr->gamma(agg::gamma_linear(0.0, sym.get_gamma()));
|
|
|
|
break;
|
|
|
|
case GAMMA_NONE:
|
|
|
|
ras_ptr->gamma(agg::gamma_none());
|
|
|
|
break;
|
|
|
|
case GAMMA_THRESHOLD:
|
|
|
|
ras_ptr->gamma(agg::gamma_threshold(sym.get_gamma()));
|
|
|
|
break;
|
|
|
|
case GAMMA_MULTIPLY:
|
|
|
|
ras_ptr->gamma(agg::gamma_multiply(sym.get_gamma()));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ras_ptr->gamma(agg::gamma_power(sym.get_gamma()));
|
2012-01-12 16:58:10 +01:00
|
|
|
}
|
|
|
|
|
2010-08-12 21:12:15 +02:00
|
|
|
metawriter_with_properties writer = sym.get_metawriter();
|
2010-06-19 22:52:44 +02:00
|
|
|
for (unsigned i=0;i<feature.num_geometries();++i)
|
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type const& geom=feature.get_geometry(i);
|
2010-06-19 22:52:44 +02:00
|
|
|
if (geom.num_points() > 2)
|
|
|
|
{
|
|
|
|
path_type path(t_,geom,prj_trans);
|
|
|
|
ras_ptr->add_path(path);
|
2010-08-12 21:12:15 +02:00
|
|
|
if (writer.first) writer.first->add_polygon(path, feature, t_, writer.second);
|
2010-06-19 22:52:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ren.color(agg::rgba8(r, g, b, int(a * sym.get_opacity())));
|
|
|
|
agg::render_scanlines(*ras_ptr, sl, ren);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template void agg_renderer<image_32>::process(polygon_symbolizer const&,
|
|
|
|
Feature const&,
|
|
|
|
proj_transform const&);
|
|
|
|
|
|
|
|
}
|
|
|
|
|