2012-07-07 01:45:58 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2015-06-16 12:49:16 +02:00
|
|
|
* Copyright (C) 2015 Artem Pavlenko
|
2012-07-07 01:45:58 +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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
// mapnik
|
2015-01-22 18:39:37 +01:00
|
|
|
#include <mapnik/image.hpp>
|
2012-07-07 01:45:58 +02:00
|
|
|
#include <mapnik/image_scaling.hpp>
|
2014-12-16 10:13:40 +01:00
|
|
|
#include <mapnik/image_scaling_traits.hpp>
|
2013-02-01 00:43:06 +01:00
|
|
|
// does not handle alpha correctly
|
|
|
|
//#include <mapnik/span_image_filter.hpp>
|
2012-07-07 01:45:58 +02:00
|
|
|
|
|
|
|
// boost
|
2014-10-22 01:37:27 +02:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wunused-local-typedef"
|
|
|
|
#pragma GCC diagnostic ignored "-Wredeclared-class-member"
|
2015-06-16 05:25:39 +02:00
|
|
|
#pragma GCC diagnostic ignored "-Wsign-conversion"
|
|
|
|
#pragma GCC diagnostic ignored "-Wconversion"
|
2012-07-07 01:45:58 +02:00
|
|
|
#include <boost/assign/list_of.hpp>
|
|
|
|
#include <boost/bimap.hpp>
|
2014-10-22 01:37:27 +02:00
|
|
|
#pragma GCC diagnostic pop
|
2012-07-07 01:45:58 +02:00
|
|
|
|
|
|
|
// agg
|
|
|
|
#include "agg_image_accessors.h"
|
|
|
|
#include "agg_pixfmt_rgba.h"
|
2014-12-02 15:56:40 +01:00
|
|
|
#include "agg_pixfmt_gray.h"
|
2013-07-24 00:45:25 +02:00
|
|
|
#include "agg_color_rgba.h"
|
2012-07-07 01:45:58 +02:00
|
|
|
#include "agg_rasterizer_scanline_aa.h"
|
|
|
|
#include "agg_renderer_scanline.h"
|
|
|
|
#include "agg_rendering_buffer.h"
|
|
|
|
#include "agg_scanline_u.h"
|
|
|
|
#include "agg_span_allocator.h"
|
2014-12-02 15:56:40 +01:00
|
|
|
#include "agg_span_image_filter_gray.h"
|
2012-07-07 01:45:58 +02:00
|
|
|
#include "agg_span_image_filter_rgba.h"
|
|
|
|
#include "agg_span_interpolator_linear.h"
|
|
|
|
#include "agg_trans_affine.h"
|
|
|
|
#include "agg_image_filters.h"
|
|
|
|
|
|
|
|
namespace mapnik
|
|
|
|
{
|
|
|
|
|
2014-07-07 19:23:15 +02:00
|
|
|
using scaling_method_lookup_type = boost::bimap<scaling_method_e, std::string>;
|
2012-07-07 01:45:58 +02:00
|
|
|
static const scaling_method_lookup_type scaling_lookup = boost::assign::list_of<scaling_method_lookup_type::relation>
|
|
|
|
(SCALING_NEAR,"near")
|
|
|
|
(SCALING_BILINEAR,"bilinear")
|
|
|
|
(SCALING_BICUBIC,"bicubic")
|
|
|
|
(SCALING_SPLINE16,"spline16")
|
|
|
|
(SCALING_SPLINE36,"spline36")
|
|
|
|
(SCALING_HANNING,"hanning")
|
|
|
|
(SCALING_HAMMING,"hamming")
|
|
|
|
(SCALING_HERMITE,"hermite")
|
|
|
|
(SCALING_KAISER,"kaiser")
|
|
|
|
(SCALING_QUADRIC,"quadric")
|
|
|
|
(SCALING_CATROM,"catrom")
|
|
|
|
(SCALING_GAUSSIAN,"gaussian")
|
|
|
|
(SCALING_BESSEL,"bessel")
|
|
|
|
(SCALING_MITCHELL,"mitchell")
|
|
|
|
(SCALING_SINC,"sinc")
|
|
|
|
(SCALING_LANCZOS,"lanczos")
|
|
|
|
(SCALING_BLACKMAN,"blackman")
|
|
|
|
;
|
|
|
|
|
|
|
|
boost::optional<scaling_method_e> scaling_method_from_string(std::string const& name)
|
|
|
|
{
|
|
|
|
boost::optional<scaling_method_e> mode;
|
|
|
|
scaling_method_lookup_type::right_const_iterator right_iter = scaling_lookup.right.find(name);
|
|
|
|
if (right_iter != scaling_lookup.right.end())
|
|
|
|
{
|
|
|
|
mode.reset(right_iter->second);
|
|
|
|
}
|
|
|
|
return mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::optional<std::string> scaling_method_to_string(scaling_method_e scaling_method)
|
|
|
|
{
|
|
|
|
boost::optional<std::string> mode;
|
|
|
|
scaling_method_lookup_type::left_const_iterator left_iter = scaling_lookup.left.find(scaling_method);
|
|
|
|
if (left_iter != scaling_lookup.left.end())
|
|
|
|
{
|
|
|
|
mode.reset(left_iter->second);
|
|
|
|
}
|
|
|
|
return mode;
|
|
|
|
}
|
|
|
|
|
2014-12-11 18:54:32 +01:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void scale_image_agg(T & target, T const& source, scaling_method_e scaling_method,
|
|
|
|
double image_ratio_x, double image_ratio_y, double x_off_f, double y_off_f,
|
2014-12-11 09:39:25 +01:00
|
|
|
double filter_factor)
|
2012-07-07 01:45:58 +02:00
|
|
|
{
|
2012-10-01 23:13:54 +02:00
|
|
|
// "the image filters should work namely in the premultiplied color space"
|
|
|
|
// http://old.nabble.com/Re:--AGG--Basic-image-transformations-p1110665.html
|
2012-10-03 06:49:52 +02:00
|
|
|
// "Yes, you need to use premultiplied images only. Only in this case the simple weighted averaging works correctly in the image fitering."
|
|
|
|
// http://permalink.gmane.org/gmane.comp.graphics.agg/3443
|
2015-01-22 18:39:37 +01:00
|
|
|
using image_type = T;
|
|
|
|
using pixel_type = typename image_type::pixel_type;
|
|
|
|
using pixfmt_pre = typename detail::agg_scaling_traits<image_type>::pixfmt_pre;
|
|
|
|
using color_type = typename detail::agg_scaling_traits<image_type>::color_type;
|
|
|
|
using img_src_type = typename detail::agg_scaling_traits<image_type>::img_src_type;
|
|
|
|
using interpolator_type = typename detail::agg_scaling_traits<image_type>::interpolator_type;
|
2014-07-07 19:23:15 +02:00
|
|
|
using renderer_base_pre = agg::renderer_base<pixfmt_pre>;
|
2014-12-16 12:02:40 +01:00
|
|
|
constexpr std::size_t pixel_size = sizeof(pixel_type);
|
2012-07-07 01:45:58 +02:00
|
|
|
|
|
|
|
// define some stuff we'll use soon
|
|
|
|
agg::rasterizer_scanline_aa<> ras;
|
|
|
|
agg::scanline_u8 sl;
|
2014-12-11 18:54:32 +01:00
|
|
|
agg::span_allocator<color_type> sa;
|
2012-07-07 01:45:58 +02:00
|
|
|
|
|
|
|
// initialize source AGG buffer
|
2015-05-04 12:49:11 +02:00
|
|
|
agg::rendering_buffer rbuf_src(const_cast<unsigned char*>(source.bytes()),
|
2014-12-16 10:37:50 +01:00
|
|
|
source.width(), source.height(), source.width() * pixel_size);
|
2012-10-03 06:49:52 +02:00
|
|
|
pixfmt_pre pixf_src(rbuf_src);
|
2014-12-11 18:54:32 +01:00
|
|
|
|
2012-07-07 01:45:58 +02:00
|
|
|
img_src_type img_src(pixf_src);
|
|
|
|
|
2012-09-12 21:34:35 +02:00
|
|
|
// initialize destination AGG buffer (with transparency)
|
2015-05-04 12:49:11 +02:00
|
|
|
agg::rendering_buffer rbuf_dst(target.bytes(), target.width(), target.height(), target.width() * pixel_size);
|
2012-09-15 03:45:09 +02:00
|
|
|
pixfmt_pre pixf_dst(rbuf_dst);
|
2012-10-03 06:49:52 +02:00
|
|
|
renderer_base_pre rb_dst_pre(pixf_dst);
|
2012-07-07 01:45:58 +02:00
|
|
|
|
|
|
|
// create a scaling matrix
|
|
|
|
agg::trans_affine img_mtx;
|
2013-03-07 02:41:20 +01:00
|
|
|
img_mtx /= agg::trans_affine_scaling(image_ratio_x, image_ratio_y);
|
2012-07-07 01:45:58 +02:00
|
|
|
|
|
|
|
// create a linear interpolator for our scaling matrix
|
|
|
|
interpolator_type interpolator(img_mtx);
|
|
|
|
// draw an anticlockwise polygon to render our image into
|
2012-09-12 21:34:35 +02:00
|
|
|
double scaled_width = target.width();
|
|
|
|
double scaled_height = target.height();
|
2012-07-07 01:45:58 +02:00
|
|
|
ras.reset();
|
|
|
|
ras.move_to_d(x_off_f, y_off_f);
|
|
|
|
ras.line_to_d(x_off_f + scaled_width, y_off_f);
|
|
|
|
ras.line_to_d(x_off_f + scaled_width, y_off_f + scaled_height);
|
|
|
|
ras.line_to_d(x_off_f, y_off_f + scaled_height);
|
|
|
|
|
2014-12-16 10:37:50 +01:00
|
|
|
if (scaling_method == SCALING_NEAR)
|
2012-07-07 01:45:58 +02:00
|
|
|
{
|
2015-01-22 18:39:37 +01:00
|
|
|
using span_gen_type = typename detail::agg_scaling_traits<image_type>::span_image_filter;
|
2012-07-07 01:45:58 +02:00
|
|
|
span_gen_type sg(img_src, interpolator);
|
2012-10-03 06:49:52 +02:00
|
|
|
agg::render_scanlines_aa(ras, sl, rb_dst_pre, sa, sg);
|
2012-07-07 01:45:58 +02:00
|
|
|
}
|
2014-12-16 10:37:50 +01:00
|
|
|
else
|
|
|
|
{
|
2015-01-22 18:39:37 +01:00
|
|
|
using span_gen_type = typename detail::agg_scaling_traits<image_type>::span_image_resample_affine;
|
2014-12-16 12:02:40 +01:00
|
|
|
agg::image_filter_lut filter;
|
|
|
|
detail::set_scaling_method(filter, scaling_method, filter_factor);
|
2014-12-16 10:37:50 +01:00
|
|
|
span_gen_type sg(img_src, interpolator, filter);
|
|
|
|
agg::render_scanlines_aa(ras, sl, rb_dst_pre, sa, sg);
|
2012-07-07 01:45:58 +02:00
|
|
|
}
|
2014-12-02 15:56:40 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-01-22 03:31:02 +01:00
|
|
|
template MAPNIK_DECL void scale_image_agg(image_rgba8 &, image_rgba8 const&, scaling_method_e,
|
2014-12-11 18:54:32 +01:00
|
|
|
double, double , double, double , double);
|
2014-12-03 18:16:42 +01:00
|
|
|
|
2015-01-22 04:08:04 +01:00
|
|
|
template MAPNIK_DECL void scale_image_agg(image_gray8 &, image_gray8 const&, scaling_method_e,
|
2014-12-11 18:54:32 +01:00
|
|
|
double, double , double, double , double);
|
2014-12-03 18:16:42 +01:00
|
|
|
|
2015-02-04 22:41:58 +01:00
|
|
|
template MAPNIK_DECL void scale_image_agg(image_gray8s &, image_gray8s const&, scaling_method_e,
|
|
|
|
double, double , double, double , double);
|
|
|
|
|
2015-01-22 04:08:04 +01:00
|
|
|
template MAPNIK_DECL void scale_image_agg(image_gray16 &, image_gray16 const&, scaling_method_e,
|
2014-12-11 18:54:32 +01:00
|
|
|
double, double , double, double , double);
|
2014-12-03 18:16:42 +01:00
|
|
|
|
2015-02-04 22:41:58 +01:00
|
|
|
template MAPNIK_DECL void scale_image_agg(image_gray16s &, image_gray16s const&, scaling_method_e,
|
|
|
|
double, double , double, double , double);
|
|
|
|
|
|
|
|
template MAPNIK_DECL void scale_image_agg(image_gray32 &, image_gray32 const&, scaling_method_e,
|
|
|
|
double, double , double, double , double);
|
|
|
|
|
|
|
|
template MAPNIK_DECL void scale_image_agg(image_gray32s &, image_gray32s const&, scaling_method_e,
|
|
|
|
double, double , double, double , double);
|
|
|
|
|
2015-01-22 04:08:04 +01:00
|
|
|
template MAPNIK_DECL void scale_image_agg(image_gray32f &, image_gray32f const&, scaling_method_e,
|
2014-12-11 18:54:32 +01:00
|
|
|
double, double , double, double , double);
|
2014-12-03 18:16:42 +01:00
|
|
|
|
2015-02-04 22:41:58 +01:00
|
|
|
template MAPNIK_DECL void scale_image_agg(image_gray64 &, image_gray64 const&, scaling_method_e,
|
|
|
|
double, double , double, double , double);
|
|
|
|
|
|
|
|
template MAPNIK_DECL void scale_image_agg(image_gray64s &, image_gray64s const&, scaling_method_e,
|
|
|
|
double, double , double, double , double);
|
|
|
|
|
|
|
|
template MAPNIK_DECL void scale_image_agg(image_gray64f &, image_gray64f const&, scaling_method_e,
|
|
|
|
double, double , double, double , double);
|
2012-07-07 01:45:58 +02:00
|
|
|
}
|