#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // icu - for memory cleanup (to make valgrind happy) #include "unicode/uclean.h" #include "utils.hpp" int main(int argc, char** argv) { std::vector args; for (int i=1;i(); ctx->push("name"); mapnik::feature_ptr feature(mapnik::feature_factory::create(ctx,1)); mapnik::transcoder tr("utf-8"); mapnik::value_unicode_string ustr = tr.transcode("hello world!"); feature->put("name",ustr); auto pt = std::make_unique(mapnik::geometry_type::types::Point); pt->move_to(128,128); feature->add_geometry(pt.release()); mapnik::parameters params; params["type"]="memory"; auto ds = std::make_shared(params); ds->push(feature); mapnik::Map m(256,256); mapnik::font_set fontset("fontset"); // NOTE: this is a valid font, but will fail because none are registered fontset.add_face_name("DejaVu Sans Book"); m.insert_fontset("fontset", fontset); mapnik::layer lyr("layer"); lyr.set_datasource(ds); lyr.add_style("style"); m.add_layer(lyr); mapnik::feature_type_style the_style; mapnik::rule r; mapnik::text_symbolizer text_sym; mapnik::text_placements_ptr placement_finder = std::make_shared(); placement_finder->defaults.format_defaults.face_name = "DejaVu Sans Book"; placement_finder->defaults.format_defaults.text_size = 10.0; placement_finder->defaults.format_defaults.fill = mapnik::color(0,0,0); placement_finder->defaults.format_defaults.fontset = fontset; placement_finder->defaults.set_format_tree(std::make_shared(mapnik::parse_expression("[name]"))); mapnik::put(text_sym, mapnik::keys::text_placements_, placement_finder); r.append(std::move(text_sym)); the_style.add_rule(std::move(r)); m.insert_style("style", std::move(the_style) ); m.zoom_to_box(mapnik::box2d(-256,-256, 256,256)); mapnik::image_32 buf(m.width(),m.height()); mapnik::agg_renderer ren(m,buf); ren.apply(); } catch (std::exception const& ex) { BOOST_TEST_EQ(std::string(ex.what()),std::string("Unable to find specified font face 'DejaVu Sans Book' in font set: 'fontset'")); } u_cleanup(); if (!::boost::detail::test_errors()) { if (quiet) std::clog << "\x1b[1;32m.\x1b[0m"; else std::clog << "C++ fontset runtime: \x1b[1;32m✓ \x1b[0m\n"; ::boost::detail::report_errors_remind().called_report_errors_function = true; } else { return ::boost::report_errors(); } }