backport nik2img command from master
This commit is contained in:
parent
718a8b3b5a
commit
1b0f4d663c
3 changed files with 205 additions and 0 deletions
|
@ -2013,6 +2013,7 @@ if not HELP_REQUESTED:
|
|||
SConscript('utils/pgsql2sqlite/build.py')
|
||||
if env['SVG2PNG']:
|
||||
SConscript('utils/svg2png/build.py')
|
||||
SConscript('utils/nik2img/build.py')
|
||||
# devtools not ready for public
|
||||
#SConscript('utils/ogrindex/build.py')
|
||||
env['LIBS'].remove('boost_program_options%s' % env['BOOST_APPEND'])
|
||||
|
|
34
utils/nik2img/build.py
Normal file
34
utils/nik2img/build.py
Normal file
|
@ -0,0 +1,34 @@
|
|||
import os
|
||||
import glob
|
||||
from copy import copy
|
||||
|
||||
Import ('env')
|
||||
program_env = env.Clone()
|
||||
|
||||
source = Split(
|
||||
"""
|
||||
nik2img.cpp
|
||||
"""
|
||||
)
|
||||
|
||||
program_env['CXXFLAGS'] = copy(env['LIBMAPNIK_CXXFLAGS'])
|
||||
program_env.Append(CPPDEFINES = env['LIBMAPNIK_DEFINES'])
|
||||
|
||||
if env['HAS_CAIRO']:
|
||||
program_env.PrependUnique(CPPPATH=env['CAIRO_CPPPATHS'])
|
||||
program_env.Append(CPPDEFINES = '-DHAVE_CAIRO')
|
||||
|
||||
boost_program_options = 'boost_program_options%s' % env['BOOST_APPEND']
|
||||
libraries = [env['MAPNIK_NAME'],boost_program_options]
|
||||
libraries.extend(copy(env['LIBMAPNIK_LIBS']))
|
||||
if env['RUNTIME_LINK'] == 'static' and env['PLATFORM'] == 'Linux':
|
||||
libraries.append('dl')
|
||||
|
||||
nik2img = program_env.Program('nik2img', source, LIBS=libraries)
|
||||
Depends(nik2img, env.subst('../../src/%s' % env['MAPNIK_LIB_NAME']))
|
||||
|
||||
if 'uninstall' not in COMMAND_LINE_TARGETS:
|
||||
env.Install(os.path.join(env['INSTALL_PREFIX'],'bin'), nik2img)
|
||||
env.Alias('install', os.path.join(env['INSTALL_PREFIX'],'bin'))
|
||||
|
||||
env['create_uninstall_target'](env, os.path.join(env['INSTALL_PREFIX'],'bin','nik2img'))
|
170
utils/nik2img/nik2img.cpp
Normal file
170
utils/nik2img/nik2img.cpp
Normal file
|
@ -0,0 +1,170 @@
|
|||
#include <mapnik/map.hpp>
|
||||
#include <mapnik/load_map.hpp>
|
||||
#include <mapnik/agg_renderer.hpp>
|
||||
#include <mapnik/version.hpp>
|
||||
#include <mapnik/debug.hpp>
|
||||
#include <mapnik/image_util.hpp>
|
||||
#include <mapnik/unicode.hpp>
|
||||
#include <mapnik/datasource_cache.hpp>
|
||||
#include <mapnik/font_engine_freetype.hpp>
|
||||
#include <mapnik/graphics.hpp>
|
||||
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
||||
#pragma GCC diagnostic ignored "-Wunused-local-typedef"
|
||||
#include <boost/algorithm/string.hpp>
|
||||
#include <boost/program_options.hpp>
|
||||
#pragma GCC diagnostic pop
|
||||
|
||||
#include <string>
|
||||
|
||||
int main (int argc,char** argv)
|
||||
{
|
||||
namespace po = boost::program_options;
|
||||
|
||||
bool verbose = false;
|
||||
bool auto_open = true;
|
||||
int return_value = 0;
|
||||
std::string xml_file;
|
||||
std::string img_file;
|
||||
double scale_factor = 1;
|
||||
bool params_as_variables = false;
|
||||
mapnik::logger logger;
|
||||
logger.set_severity(mapnik::logger::error);
|
||||
|
||||
try
|
||||
{
|
||||
po::options_description desc("nik2img utility");
|
||||
desc.add_options()
|
||||
("help,h", "produce usage message")
|
||||
("version,V","print version string")
|
||||
("verbose,v","verbose output")
|
||||
("open","automatically open the file after rendering (os x only)")
|
||||
("xml",po::value<std::string>(),"xml map to read")
|
||||
("img",po::value<std::string>(),"image to render")
|
||||
("scale-factor",po::value<double>(),"scale factor for rendering")
|
||||
("variables","make map parameters available as render-time variables")
|
||||
;
|
||||
|
||||
po::positional_options_description p;
|
||||
p.add("xml",1);
|
||||
p.add("img",1);
|
||||
po::variables_map vm;
|
||||
po::store(po::command_line_parser(argc, argv).options(desc).positional(p).run(), vm);
|
||||
po::notify(vm);
|
||||
|
||||
if (vm.count("version"))
|
||||
{
|
||||
std::clog <<"version " << MAPNIK_VERSION_STRING << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (vm.count("help"))
|
||||
{
|
||||
std::clog << desc << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (vm.count("verbose"))
|
||||
{
|
||||
verbose = true;
|
||||
}
|
||||
|
||||
if (vm.count("open"))
|
||||
{
|
||||
auto_open = true;
|
||||
}
|
||||
|
||||
if (vm.count("xml"))
|
||||
{
|
||||
xml_file=vm["xml"].as<std::string>();
|
||||
}
|
||||
else
|
||||
{
|
||||
std::clog << "please provide an xml map as first argument!" << std::endl;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (vm.count("img"))
|
||||
{
|
||||
img_file=vm["img"].as<std::string>();
|
||||
}
|
||||
else
|
||||
{
|
||||
std::clog << "please provide an img as second argument!" << std::endl;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (vm.count("scale-factor"))
|
||||
{
|
||||
scale_factor=vm["scale-factor"].as<double>();
|
||||
}
|
||||
|
||||
if (vm.count("variables"))
|
||||
{
|
||||
params_as_variables = true;
|
||||
}
|
||||
|
||||
mapnik::datasource_cache::instance().register_datasources("./plugins/input/");
|
||||
mapnik::freetype_engine::register_fonts("./fonts",true);
|
||||
mapnik::Map map(600,400);
|
||||
mapnik::load_map(map,xml_file,true);
|
||||
map.zoom_all();
|
||||
mapnik::image_32 im(map.width(),map.height());
|
||||
mapnik::request req(map.width(),map.height(),map.get_current_extent());
|
||||
req.set_buffer_size(map.buffer_size());
|
||||
/*mapnik::attributes vars;
|
||||
if (params_as_variables)
|
||||
{
|
||||
mapnik::transcoder tr("utf-8");
|
||||
for (auto const& param : map.get_extra_parameters())
|
||||
{
|
||||
std::string const& name = param.first.substr(1);
|
||||
if (!name.empty())
|
||||
{
|
||||
if (param.second.is<mapnik::value_integer>())
|
||||
{
|
||||
vars[name] = param.second.get<mapnik::value_integer>();
|
||||
}
|
||||
else if (param.second.is<mapnik::value_double>())
|
||||
{
|
||||
vars[name] = param.second.get<mapnik::value_double>();
|
||||
}
|
||||
else if (param.second.is<std::string>())
|
||||
{
|
||||
vars[name] = tr.transcode(param.second.get<std::string>().c_str());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
mapnik::agg_renderer<mapnik::image_32> ren(map,req,im,scale_factor,0,0);
|
||||
ren.apply();
|
||||
mapnik::save_to_file(im,img_file);
|
||||
if (auto_open)
|
||||
{
|
||||
std::ostringstream s;
|
||||
#ifdef __APPLE__
|
||||
s << "open ";
|
||||
#elif _WIN32
|
||||
s << "start ";
|
||||
#else
|
||||
s << "xdg-open ";
|
||||
#endif
|
||||
s << img_file;
|
||||
int ret = system(s.str().c_str());
|
||||
if (ret != 0)
|
||||
return_value = ret;
|
||||
}
|
||||
else
|
||||
{
|
||||
std::clog << "rendered to: " << img_file << "\n";
|
||||
}
|
||||
}
|
||||
catch (std::exception const& ex)
|
||||
{
|
||||
std::clog << "Error " << ex.what() << std::endl;
|
||||
return -1;
|
||||
}
|
||||
return return_value;
|
||||
}
|
Loading…
Add table
Reference in a new issue