mapnik/utils/svg2png/svg2png.cpp

234 lines
7.3 KiB
C++
Raw Normal View History

2011-01-26 02:19:01 +01:00
/*****************************************************************************
2011-11-14 04:54:32 +01:00
*
2011-01-26 02:19:01 +01:00
* This file is part of Mapnik (c++ mapping toolkit)
*
2015-06-16 12:49:16 +02:00
* Copyright (C) 2015 Artem Pavlenko
2011-01-26 02:19:01 +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 <iostream>
#include <sstream>
2011-01-26 02:19:01 +01:00
#include <vector>
#include <string>
2011-01-26 02:19:01 +01:00
#include <mapnik/version.hpp>
2012-04-11 21:35:07 +02:00
#include <mapnik/debug.hpp>
2011-01-26 02:19:01 +01:00
#include <mapnik/marker.hpp>
#include <mapnik/marker_cache.hpp>
#include <mapnik/image_util.hpp>
#include <mapnik/svg/svg_path_adapter.hpp>
#include <mapnik/svg/svg_renderer_agg.hpp>
2011-01-26 02:19:01 +01:00
#include <mapnik/svg/svg_path_attributes.hpp>
2014-10-22 01:37:27 +02:00
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
#pragma GCC diagnostic ignored "-Wunused-local-typedef"
2011-01-26 02:19:01 +01:00
#include <boost/algorithm/string.hpp>
#include <boost/program_options.hpp>
2014-10-22 01:37:27 +02:00
#pragma GCC diagnostic pop
2011-01-26 02:19:01 +01:00
#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"
#include <libxml/parser.h> // for xmlInitParser(), xmlCleanupParser()
2015-02-19 19:19:01 +01:00
struct main_marker_visitor
{
main_marker_visitor(std::string & svg_name,
int & return_value,
bool verbose,
bool auto_open)
: svg_name_(svg_name),
return_value_(return_value),
verbose_(verbose),
auto_open_(auto_open) {}
void operator() (mapnik::marker_null const&)
{
std::clog << "svg2png error: '" << svg_name_ << "' is not a valid vector!\n";
return_value_ = -1;
}
2015-02-19 19:19:01 +01:00
void operator() (mapnik::marker_rgba8 const&)
{
std::clog << "svg2png error: '" << svg_name_ << "' is not a valid vector!\n";
return_value_ = -1;
}
void operator() (mapnik::marker_svg const& marker)
{
using pixfmt = agg::pixfmt_rgba32_pre;
using renderer_base = agg::renderer_base<pixfmt>;
using renderer_solid = agg::renderer_scanline_aa_solid<renderer_base>;
agg::rasterizer_scanline_aa<> ras_ptr;
agg::scanline_u8 sl;
double opacity = 1;
int w = marker.width();
int h = marker.height();
if (verbose_)
{
std::clog << "found width of '" << w << "' and height of '" << h << "'\n";
}
// 10 pixel buffer to avoid edge clipping of 100% svg's
mapnik::image_rgba8 im(w+0,h+0);
2015-05-04 12:49:11 +02:00
agg::rendering_buffer buf(im.bytes(), im.width(), im.height(), im.row_size());
2015-02-19 19:19:01 +01:00
pixfmt pixf(buf);
renderer_base renb(pixf);
mapnik::box2d<double> const& bbox = marker.get_data()->bounding_box();
mapnik::coord<double,2> c = bbox.center();
// center the svg marker on '0,0'
agg::trans_affine mtx = agg::trans_affine_translation(-c.x,-c.y);
// render the marker at the center of the marker box
mtx.translate(0.5 * im.width(), 0.5 * im.height());
mapnik::svg::vertex_stl_adapter<mapnik::svg::svg_path_storage> stl_storage(marker.get_data()->source());
mapnik::svg::svg_path_adapter svg_path(stl_storage);
mapnik::svg::svg_renderer_agg<mapnik::svg::svg_path_adapter,
agg::pod_bvector<mapnik::svg::path_attributes>,
renderer_solid,
agg::pixfmt_rgba32_pre > svg_renderer_this(svg_path,
marker.get_data()->attributes());
svg_renderer_this.render(ras_ptr, sl, renb, mtx, opacity, bbox);
boost::algorithm::ireplace_last(svg_name_,".svg",".png");
demultiply_alpha(im);
mapnik::save_to_file<mapnik::image_rgba8>(im,svg_name_,"png");
if (auto_open_)
{
std::ostringstream s;
#ifdef DARWIN
s << "open " << svg_name_;
#else
s << "xdg-open " << svg_name_;
#endif
int ret = system(s.str().c_str());
if (ret != 0)
return_value_ = ret;
}
std::clog << "rendered to: " << svg_name_ << "\n";
}
private:
std::string & svg_name_;
int & return_value_;
bool verbose_;
bool auto_open_;
};
2011-01-26 02:19:01 +01:00
2011-11-14 04:54:32 +01:00
int main (int argc,char** argv)
2011-01-26 02:19:01 +01:00
{
namespace po = boost::program_options;
2011-11-14 04:54:32 +01:00
2012-04-11 21:35:07 +02:00
bool verbose = false;
bool auto_open = false;
int return_value = 0;
std::vector<std::string> svg_files;
2014-08-28 22:59:48 +02:00
mapnik::logger::instance().set_severity(mapnik::logger::error);
2011-11-14 04:54:32 +01:00
2011-01-26 02:19:01 +01:00
try
{
po::options_description desc("svg2png 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)")
("svg",po::value<std::vector<std::string> >(),"svg file to read")
2011-01-26 02:19:01 +01:00
;
2011-11-14 04:54:32 +01:00
2011-01-26 02:19:01 +01:00
po::positional_options_description p;
p.add("svg",-1);
2011-11-14 04:54:32 +01:00
po::variables_map vm;
2011-01-26 02:19:01 +01:00
po::store(po::command_line_parser(argc, argv).options(desc).positional(p).run(), vm);
po::notify(vm);
2011-02-09 07:50:27 +01:00
2011-01-26 02:19:01 +01:00
if (vm.count("version"))
{
std::clog <<"version " << MAPNIK_VERSION_STRING << std::endl;
2011-01-26 02:19:01 +01:00
return 1;
}
2011-11-14 04:54:32 +01:00
if (vm.count("help"))
2011-01-26 02:19:01 +01:00
{
std::clog << desc << std::endl;
return 1;
}
2011-11-14 04:54:32 +01:00
if (vm.count("verbose"))
2011-01-26 02:19:01 +01:00
{
verbose = true;
}
2011-02-09 07:50:27 +01:00
if (vm.count("open"))
{
auto_open = true;
}
2011-01-26 02:19:01 +01:00
if (vm.count("svg"))
{
svg_files=vm["svg"].as< std::vector<std::string> >();
2011-01-26 02:19:01 +01:00
}
else
{
std::clog << "please provide an svg file!" << std::endl;
return -1;
}
std::vector<std::string>::const_iterator itr = svg_files.begin();
if (itr == svg_files.end())
{
std::clog << "no svg files to render" << std::endl;
return 0;
}
2012-04-11 21:35:07 +02:00
xmlInitParser();
while (itr != svg_files.end())
{
std::string svg_name (*itr++);
if (verbose)
{
std::clog << "found: " << svg_name << "\n";
}
2011-11-14 04:54:32 +01:00
std::shared_ptr<mapnik::marker const> marker = mapnik::marker_cache::instance().find(svg_name, false);
2015-02-19 19:19:01 +01:00
main_marker_visitor visitor(svg_name, return_value, verbose, auto_open);
mapnik::util::apply_visitor(visitor, *marker);
}
2011-01-26 02:19:01 +01:00
}
catch (...)
{
std::clog << "Exception of unknown type!" << std::endl;
xmlCleanupParser();
2011-01-26 02:19:01 +01:00
return -1;
}
// only call this once, on exit
// to make sure valgrind output is clean
// http://xmlsoft.org/xmlmem.html
xmlCleanupParser();
return return_value;
2011-01-26 02:19:01 +01:00
}