2010-06-01 15:31:08 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Artem Pavlenko
|
|
|
|
*
|
|
|
|
* 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$
|
|
|
|
|
|
|
|
#include <mapnik/agg_renderer.hpp>
|
2010-06-13 14:03:42 +02:00
|
|
|
#include <mapnik/agg_rasterizer.hpp>
|
2010-06-01 15:31:08 +02:00
|
|
|
#include <mapnik/image_util.hpp>
|
|
|
|
#include <mapnik/image_cache.hpp>
|
|
|
|
#include <mapnik/svg/marker_cache.hpp>
|
2010-06-08 12:16:22 +02:00
|
|
|
#include <mapnik/svg/svg_converter.hpp>
|
|
|
|
#include <mapnik/svg/svg_renderer.hpp>
|
2010-06-14 18:38:02 +02:00
|
|
|
#include <mapnik/svg/svg_path_adapter.hpp>
|
2010-06-01 15:31:08 +02:00
|
|
|
|
|
|
|
#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"
|
|
|
|
|
|
|
|
namespace mapnik {
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void agg_renderer<T>::process(shield_symbolizer const& sym,
|
2010-06-02 13:03:30 +02:00
|
|
|
Feature const& feature,
|
|
|
|
proj_transform const& prj_trans)
|
2010-06-01 15:31:08 +02:00
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
typedef coord_transform2<CoordTransform,geometry_type> path_type;
|
2010-06-03 14:35:51 +02:00
|
|
|
typedef agg::pixfmt_rgba32 pixfmt;
|
|
|
|
typedef agg::renderer_base<pixfmt> renderer_base;
|
|
|
|
typedef agg::renderer_scanline_aa_solid<renderer_base> renderer_solid;
|
|
|
|
|
2010-08-11 05:25:15 +02:00
|
|
|
|
|
|
|
metawriter_with_properties writer = sym.get_metawriter();
|
|
|
|
|
2010-06-01 15:31:08 +02:00
|
|
|
UnicodeString text;
|
|
|
|
if( sym.get_no_text() )
|
2010-06-02 13:03:30 +02:00
|
|
|
text = UnicodeString( " " ); // TODO: fix->use 'space' as the text to render
|
2010-06-01 15:31:08 +02:00
|
|
|
else
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
expression_ptr name_expr = sym.get_name();
|
|
|
|
if (!name_expr) return;
|
|
|
|
value_type result = boost::apply_visitor(evaluate<Feature,value_type>(feature),*name_expr);
|
|
|
|
text = result.to_unicode();
|
2010-06-01 15:31:08 +02:00
|
|
|
}
|
|
|
|
|
2010-09-18 21:10:18 +02:00
|
|
|
if ( sym.get_text_transform() == UPPERCASE)
|
2010-06-01 15:31:08 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
text = text.toUpper();
|
2010-06-01 15:31:08 +02:00
|
|
|
}
|
2010-09-18 21:10:18 +02:00
|
|
|
else if ( sym.get_text_transform() == LOWERCASE)
|
2010-06-01 15:31:08 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
text = text.toLower();
|
2010-06-01 15:31:08 +02:00
|
|
|
}
|
|
|
|
|
2010-06-10 16:12:28 +02:00
|
|
|
agg::trans_affine tr;
|
|
|
|
boost::array<double,6> const& m = sym.get_transform();
|
|
|
|
tr.load_from(&m[0]);
|
|
|
|
tr = agg::trans_affine_scaling(scale_factor_) * tr;
|
|
|
|
|
2010-06-01 15:31:08 +02:00
|
|
|
std::string filename = path_processor_type::evaluate( *sym.get_filename(), feature);
|
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
if (is_svg(filename)) //SVG Label
|
2010-06-01 15:31:08 +02:00
|
|
|
{
|
2010-06-14 18:38:02 +02:00
|
|
|
using namespace mapnik::svg;
|
2010-06-03 14:35:51 +02:00
|
|
|
boost::optional<path_ptr> marker = marker_cache::instance()->find(filename, true);
|
|
|
|
ras_ptr->reset();
|
|
|
|
ras_ptr->gamma(agg::gamma_linear());
|
|
|
|
agg::scanline_u8 sl;
|
|
|
|
agg::rendering_buffer buf(pixmap_.raw_data(), width_, height_, width_ * 4);
|
|
|
|
pixfmt pixf(buf);
|
|
|
|
renderer_base renb(pixf);
|
|
|
|
renderer_solid ren(renb);
|
|
|
|
|
|
|
|
if (text.length() > 0 && marker && *marker)
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
2010-06-03 14:35:51 +02:00
|
|
|
face_set_ptr faces;
|
2010-06-08 12:16:22 +02:00
|
|
|
|
2010-06-08 12:16:31 +02:00
|
|
|
box2d<double> const& bbox = (*marker)->bounding_box();
|
|
|
|
double x1 = bbox.minx();
|
|
|
|
double y1 = bbox.miny();
|
|
|
|
double x2 = bbox.maxx();
|
|
|
|
double y2 = bbox.maxy();
|
2010-09-25 14:12:59 +02:00
|
|
|
|
|
|
|
agg::trans_affine recenter = agg::trans_affine_translation(-0.5*(x1+x2),-0.5*(y1+y2));
|
2010-06-10 16:12:28 +02:00
|
|
|
tr.transform(&x1,&y1);
|
|
|
|
tr.transform(&x2,&y2);
|
|
|
|
|
2010-06-14 18:38:02 +02:00
|
|
|
vertex_stl_adapter<svg_path_storage> stl_storage((*marker)->source());
|
|
|
|
svg_path_adapter svg_path(stl_storage);
|
|
|
|
svg_renderer<svg_path_adapter,
|
|
|
|
agg::pod_bvector<path_attributes> > svg_renderer(svg_path,
|
|
|
|
(*marker)->attributes());
|
2010-06-10 16:12:28 +02:00
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
int w = int(x2 - x1);
|
|
|
|
int h = int(y2 - y1);
|
|
|
|
|
|
|
|
if (sym.get_fontset().size() > 0)
|
|
|
|
{
|
|
|
|
faces = font_manager_.get_face_set(sym.get_fontset());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
faces = font_manager_.get_face_set(sym.get_face_name());
|
|
|
|
}
|
|
|
|
|
2010-06-16 17:15:13 +02:00
|
|
|
stroker_ptr strk = font_manager_.get_stroker();
|
|
|
|
if (strk && faces->size() > 0)
|
2010-06-03 14:35:51 +02:00
|
|
|
{
|
2010-06-16 17:15:13 +02:00
|
|
|
text_renderer<T> text_ren(pixmap_, faces, *strk);
|
2010-06-10 16:12:28 +02:00
|
|
|
|
|
|
|
text_ren.set_pixel_size(sym.get_text_size() * scale_factor_);
|
2010-06-03 14:35:51 +02:00
|
|
|
text_ren.set_fill(sym.get_fill());
|
|
|
|
text_ren.set_halo_fill(sym.get_halo_fill());
|
2010-06-16 17:15:13 +02:00
|
|
|
text_ren.set_halo_radius(sym.get_halo_radius() * scale_factor_);
|
2010-06-15 14:28:06 +02:00
|
|
|
text_ren.set_opacity(sym.get_text_opacity());
|
2010-06-10 16:12:28 +02:00
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
placement_finder<label_collision_detector4> finder(detector_);
|
2010-06-01 15:31:08 +02:00
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
string_info info(text);
|
|
|
|
|
|
|
|
faces->get_string_info(info);
|
|
|
|
|
|
|
|
unsigned num_geom = feature.num_geometries();
|
|
|
|
|
|
|
|
for (unsigned i=0;i<num_geom;++i)
|
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type const& geom = feature.get_geometry(i);
|
2010-06-03 14:35:51 +02:00
|
|
|
if (geom.num_points() > 0 )
|
|
|
|
{
|
|
|
|
path_type path(t_,geom,prj_trans);
|
2010-10-05 13:41:07 +02:00
|
|
|
position const& shield_pos = sym.get_shield_displacement();
|
2010-06-03 14:35:51 +02:00
|
|
|
label_placement_enum how_placed = sym.get_label_placement();
|
2010-10-05 13:41:07 +02:00
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
if (how_placed == POINT_PLACEMENT || how_placed == VERTEX_PLACEMENT)
|
|
|
|
{
|
|
|
|
// for every vertex, try and place a shield/text
|
|
|
|
geom.rewind(0);
|
|
|
|
for( unsigned jj = 0; jj < geom.num_points(); jj++ )
|
|
|
|
{
|
|
|
|
double label_x;
|
|
|
|
double label_y;
|
|
|
|
double z=0.0;
|
2010-09-27 11:58:30 +02:00
|
|
|
placement text_placement(info, sym, scale_factor_, w, h, false);
|
2010-06-03 14:35:51 +02:00
|
|
|
text_placement.avoid_edges = sym.get_avoid_edges();
|
|
|
|
text_placement.allow_overlap = sym.get_allow_overlap();
|
|
|
|
if( how_placed == VERTEX_PLACEMENT )
|
|
|
|
geom.vertex(&label_x,&label_y); // by vertex
|
|
|
|
else
|
2010-06-10 18:34:52 +02:00
|
|
|
geom.middle_point(&label_x, &label_y); // by middle of line
|
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
prj_trans.backward(label_x,label_y, z);
|
|
|
|
t_.forward(&label_x,&label_y);
|
2010-06-28 23:32:30 +02:00
|
|
|
|
2010-10-05 13:41:07 +02:00
|
|
|
// position SVG label at vertex + shield_displacement
|
|
|
|
label_x = label_x + boost::get<0>(shield_pos) * scale_factor_;
|
|
|
|
label_y = label_y + boost::get<1>(shield_pos) * scale_factor_;
|
|
|
|
// position text relative to label position
|
|
|
|
// NOTE: (text) displacement applied in placement_finder.cpp FIXME!
|
2010-06-10 16:12:28 +02:00
|
|
|
finder.find_point_placement( text_placement,label_x,label_y,0.0,
|
|
|
|
sym.get_vertical_alignment(),
|
|
|
|
sym.get_line_spacing() * scale_factor_,
|
|
|
|
sym.get_character_spacing() * scale_factor_,
|
|
|
|
sym.get_horizontal_alignment(),
|
|
|
|
sym.get_justify_alignment() );
|
2010-06-03 14:35:51 +02:00
|
|
|
|
|
|
|
// check to see if image overlaps anything too, there is only ever 1 placement found for points and verticies
|
|
|
|
if( text_placement.placements.size() > 0)
|
|
|
|
{
|
|
|
|
|
2010-10-05 13:41:07 +02:00
|
|
|
double x = text_placement.placements[0].starting_x;
|
|
|
|
double y = text_placement.placements[0].starting_y;
|
|
|
|
box2d<double> label_ext;
|
|
|
|
label_ext.init( floor(label_x - 0.5 * w), floor(label_y - 0.5 * h),
|
|
|
|
ceil (label_x + 0.5 * w), ceil (label_y + 0.5 * h) );
|
2010-06-03 14:35:51 +02:00
|
|
|
if ( sym.get_allow_overlap() || detector_.has_placement(label_ext) )
|
|
|
|
{
|
2010-10-05 13:41:07 +02:00
|
|
|
agg::trans_affine matrix = recenter * tr * agg::trans_affine_translation(label_x, label_y);
|
2010-11-10 15:40:05 +01:00
|
|
|
svg_renderer.render(*ras_ptr, sl, ren, matrix, sym.get_opacity());
|
2010-06-03 14:35:51 +02:00
|
|
|
box2d<double> dim = text_ren.prepare_glyphs(&text_placement.placements[0]);
|
|
|
|
text_ren.render(x,y);
|
|
|
|
detector_.insert(label_ext);
|
|
|
|
finder.update_detector(text_placement);
|
2010-08-11 05:25:15 +02:00
|
|
|
if (writer.first) {
|
2010-10-05 13:41:07 +02:00
|
|
|
writer.first->add_box(label_ext, feature, t_, writer.second);
|
2010-08-11 05:25:15 +02:00
|
|
|
writer.first->add_text(text_placement, faces, feature, t_, writer.second);
|
|
|
|
}
|
2010-06-03 14:35:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-06-01 15:31:08 +02:00
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
else if (geom.num_points() > 1 && sym.get_label_placement() == LINE_PLACEMENT)
|
|
|
|
{
|
2010-09-27 11:58:30 +02:00
|
|
|
placement text_placement(info, sym, scale_factor_, w, h, true);
|
2010-06-03 14:35:51 +02:00
|
|
|
text_placement.avoid_edges = sym.get_avoid_edges();
|
|
|
|
finder.find_point_placements<path_type>(text_placement,path);
|
|
|
|
|
|
|
|
for (unsigned int ii = 0; ii < text_placement.placements.size(); ++ ii)
|
|
|
|
{
|
2010-06-08 12:16:22 +02:00
|
|
|
|
2010-09-27 12:07:21 +02:00
|
|
|
double x = floor(text_placement.placements[ii].starting_x);
|
|
|
|
double y = floor(text_placement.placements[ii].starting_y);
|
2010-09-30 13:40:24 +02:00
|
|
|
agg::trans_affine matrix = recenter * tr * agg::trans_affine_translation(x, y);
|
2010-11-10 15:40:05 +01:00
|
|
|
svg_renderer.render(*ras_ptr, sl, ren, matrix, sym.get_opacity());
|
2010-09-30 13:40:24 +02:00
|
|
|
if (writer.first) writer.first->add_box(box2d<double>(x,y,x+w,y+h), feature, t_, writer.second);
|
2010-06-03 14:35:51 +02:00
|
|
|
box2d<double> dim = text_ren.prepare_glyphs(&text_placement.placements[ii]);
|
|
|
|
text_ren.render(x,y);
|
|
|
|
}
|
|
|
|
finder.update_detector(text_placement);
|
2010-08-11 05:25:15 +02:00
|
|
|
if (writer.first) writer.first->add_text(text_placement, faces, feature, t_, writer.second);
|
2010-06-03 14:35:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
boost::optional<image_ptr> data = image_cache::instance()->find(filename,true);
|
|
|
|
|
|
|
|
if (text.length() > 0 && data)
|
|
|
|
{
|
|
|
|
face_set_ptr faces;
|
2010-06-01 15:31:08 +02:00
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
if (sym.get_fontset().size() > 0)
|
|
|
|
{
|
|
|
|
faces = font_manager_.get_face_set(sym.get_fontset());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
faces = font_manager_.get_face_set(sym.get_face_name());
|
|
|
|
}
|
2010-06-01 15:31:08 +02:00
|
|
|
|
2010-06-16 17:15:13 +02:00
|
|
|
stroker_ptr strk = font_manager_.get_stroker();
|
|
|
|
if (strk && faces->size() > 0)
|
2010-06-01 15:31:08 +02:00
|
|
|
{
|
2010-06-16 17:15:13 +02:00
|
|
|
text_renderer<T> ren(pixmap_, faces, *strk);
|
|
|
|
|
2010-07-14 15:51:27 +02:00
|
|
|
ren.set_pixel_size(sym.get_text_size() * scale_factor_);
|
2010-06-03 14:35:51 +02:00
|
|
|
ren.set_fill(sym.get_fill());
|
|
|
|
ren.set_halo_fill(sym.get_halo_fill());
|
2010-07-14 15:51:27 +02:00
|
|
|
ren.set_halo_radius(sym.get_halo_radius() * scale_factor_);
|
2010-06-15 14:28:06 +02:00
|
|
|
ren.set_opacity(sym.get_text_opacity());
|
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
placement_finder<label_collision_detector4> finder(detector_);
|
|
|
|
|
|
|
|
string_info info(text);
|
|
|
|
|
|
|
|
faces->get_string_info(info);
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
int w = (*data)->width();
|
|
|
|
int h = (*data)->height();
|
|
|
|
|
|
|
|
unsigned num_geom = feature.num_geometries();
|
|
|
|
for (unsigned i=0;i<num_geom;++i)
|
|
|
|
{
|
2010-11-03 14:19:15 +01:00
|
|
|
geometry_type const& geom = feature.get_geometry(i);
|
2010-06-03 14:35:51 +02:00
|
|
|
if (geom.num_points() > 0 )
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
2010-06-03 14:35:51 +02:00
|
|
|
path_type path(t_,geom,prj_trans);
|
|
|
|
|
|
|
|
label_placement_enum how_placed = sym.get_label_placement();
|
|
|
|
if (how_placed == POINT_PLACEMENT || how_placed == VERTEX_PLACEMENT)
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
2010-06-03 14:35:51 +02:00
|
|
|
// for every vertex, try and place a shield/text
|
|
|
|
geom.rewind(0);
|
2010-09-27 11:58:30 +02:00
|
|
|
placement text_placement(info, sym, scale_factor_, w, h, false);
|
2010-09-10 15:15:06 +02:00
|
|
|
text_placement.avoid_edges = sym.get_avoid_edges();
|
|
|
|
text_placement.allow_overlap = sym.get_allow_overlap();
|
2010-09-10 15:15:34 +02:00
|
|
|
position const& pos = sym.get_displacement();
|
|
|
|
position const& shield_pos = sym.get_shield_displacement();
|
2010-06-03 14:35:51 +02:00
|
|
|
for( unsigned jj = 0; jj < geom.num_points(); jj++ )
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
2010-06-03 14:35:51 +02:00
|
|
|
double label_x;
|
|
|
|
double label_y;
|
|
|
|
double z=0.0;
|
2010-09-10 15:15:06 +02:00
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
if( how_placed == VERTEX_PLACEMENT )
|
|
|
|
geom.vertex(&label_x,&label_y); // by vertex
|
2010-06-02 13:03:30 +02:00
|
|
|
else
|
2010-06-03 14:35:51 +02:00
|
|
|
geom.label_position(&label_x, &label_y); // by middle of line or by point
|
|
|
|
prj_trans.backward(label_x,label_y, z);
|
|
|
|
t_.forward(&label_x,&label_y);
|
2010-09-10 15:15:34 +02:00
|
|
|
|
2010-06-28 23:32:30 +02:00
|
|
|
label_x += boost::get<0>(shield_pos);
|
|
|
|
label_y += boost::get<1>(shield_pos);
|
|
|
|
|
2010-06-16 17:15:13 +02:00
|
|
|
finder.find_point_placement( text_placement,label_x,label_y,0.0,
|
|
|
|
sym.get_vertical_alignment(),
|
|
|
|
sym.get_line_spacing(),
|
|
|
|
sym.get_character_spacing(),
|
|
|
|
sym.get_horizontal_alignment(),
|
|
|
|
sym.get_justify_alignment() );
|
2010-06-03 14:35:51 +02:00
|
|
|
|
|
|
|
// check to see if image overlaps anything too, there is only ever 1 placement found for points and verticies
|
|
|
|
if( text_placement.placements.size() > 0)
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
2010-09-24 14:55:03 +02:00
|
|
|
double x = floor(text_placement.placements[0].starting_x);
|
|
|
|
double y = floor(text_placement.placements[0].starting_y);
|
2010-06-03 14:35:51 +02:00
|
|
|
int px;
|
|
|
|
int py;
|
|
|
|
box2d<double> label_ext;
|
|
|
|
|
|
|
|
if( !sym.get_unlock_image() )
|
2010-09-10 15:15:34 +02:00
|
|
|
{
|
|
|
|
// center image at text center position
|
2010-06-03 14:35:51 +02:00
|
|
|
// remove displacement from image label
|
|
|
|
double lx = x - boost::get<0>(pos);
|
|
|
|
double ly = y - boost::get<1>(pos);
|
2010-09-10 15:49:21 +02:00
|
|
|
px=int(floor(lx - (0.5 * w)));
|
|
|
|
py=int(floor(ly - (0.5 * h)));
|
2010-06-03 14:35:51 +02:00
|
|
|
label_ext.init( floor(lx - 0.5 * w), floor(ly - 0.5 * h), ceil (lx + 0.5 * w), ceil (ly + 0.5 * h) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // center image at reference location
|
|
|
|
px=int(floor(label_x - 0.5 * w));
|
|
|
|
py=int(floor(label_y - 0.5 * h));
|
|
|
|
label_ext.init( floor(label_x - 0.5 * w), floor(label_y - 0.5 * h), ceil (label_x + 0.5 * w), ceil (label_y + 0.5 * h));
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( sym.get_allow_overlap() || detector_.has_placement(label_ext) )
|
|
|
|
{
|
|
|
|
//pixmap_.set_rectangle_alpha(px,py,*data);
|
2010-06-15 14:28:06 +02:00
|
|
|
pixmap_.set_rectangle_alpha2(*(*data),px,py,sym.get_opacity());
|
2010-06-03 14:35:51 +02:00
|
|
|
box2d<double> dim = ren.prepare_glyphs(&text_placement.placements[0]);
|
|
|
|
ren.render(x,y);
|
|
|
|
detector_.insert(label_ext);
|
|
|
|
finder.update_detector(text_placement);
|
2010-08-11 05:25:15 +02:00
|
|
|
if (writer.first) {
|
|
|
|
writer.first->add_box(box2d<double>(px,py,px+w,py+h), feature, t_, writer.second);
|
|
|
|
writer.first->add_text(text_placement, faces, feature, t_, writer.second);
|
|
|
|
}
|
2010-06-03 14:35:51 +02:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
else if (geom.num_points() > 1 && sym.get_label_placement() == LINE_PLACEMENT)
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
2010-09-27 11:58:30 +02:00
|
|
|
placement text_placement(info, sym, scale_factor_, w, h, true);
|
2010-06-03 14:35:51 +02:00
|
|
|
text_placement.avoid_edges = sym.get_avoid_edges();
|
|
|
|
finder.find_point_placements<path_type>(text_placement,path);
|
2010-09-10 15:15:34 +02:00
|
|
|
position const& pos = sym.get_displacement();
|
2010-06-03 14:35:51 +02:00
|
|
|
for (unsigned int ii = 0; ii < text_placement.placements.size(); ++ ii)
|
2010-09-10 15:15:34 +02:00
|
|
|
{
|
|
|
|
double x = floor(text_placement.placements[ii].starting_x);
|
|
|
|
double y = floor(text_placement.placements[ii].starting_y);
|
2010-09-10 15:15:06 +02:00
|
|
|
|
2010-09-10 15:15:34 +02:00
|
|
|
double lx = x - boost::get<0>(pos);
|
|
|
|
double ly = y - boost::get<1>(pos);
|
2010-09-10 15:49:21 +02:00
|
|
|
int px=int(floor(lx - (0.5*w)));
|
|
|
|
int py=int(floor(ly - (0.5*h)));
|
2010-09-10 15:15:06 +02:00
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
pixmap_.set_rectangle_alpha(px,py,*(*data));
|
2010-08-11 05:25:15 +02:00
|
|
|
if (writer.first) writer.first->add_box(box2d<double>(px,py,px+w,py+h), feature, t_, writer.second);
|
2010-09-10 15:15:34 +02:00
|
|
|
|
2010-06-03 14:35:51 +02:00
|
|
|
box2d<double> dim = ren.prepare_glyphs(&text_placement.placements[ii]);
|
|
|
|
ren.render(x,y);
|
|
|
|
}
|
|
|
|
finder.update_detector(text_placement);
|
2010-08-11 05:25:15 +02:00
|
|
|
if (writer.first) writer.first->add_text(text_placement, faces, feature, t_, writer.second);
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-06-01 15:31:08 +02:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
2010-06-01 15:31:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template void agg_renderer<image_32>::process(shield_symbolizer const&,
|
2010-06-02 13:03:30 +02:00
|
|
|
Feature const&,
|
|
|
|
proj_transform const&);
|
2010-06-01 15:31:08 +02:00
|
|
|
|
|
|
|
}
|