2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:54:32 +01:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2014-11-20 15:25:50 +01:00
|
|
|
* Copyright (C) 2014 Artem Pavlenko, Jean-Francois Doyon
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +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,
|
2005-06-14 17:06:59 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 12:32:02 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2005-06-14 17:06:59 +02:00
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2014-08-12 19:44:11 +02:00
|
|
|
#include <mapnik/config.hpp>
|
|
|
|
|
2014-10-22 01:37:27 +02:00
|
|
|
// boost
|
2013-10-24 00:42:01 +02:00
|
|
|
#include "boost_std_shared_shim.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"
|
|
|
|
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
|
2013-10-24 00:42:01 +02:00
|
|
|
|
2006-09-11 11:48:27 +02:00
|
|
|
#include <boost/python.hpp>
|
|
|
|
#include <boost/python/module.hpp>
|
|
|
|
#include <boost/python/def.hpp>
|
2014-10-22 01:37:27 +02:00
|
|
|
#pragma GCC diagnostic pop
|
2010-06-03 21:50:27 +02:00
|
|
|
|
2008-01-25 15:40:48 +01:00
|
|
|
// mapnik
|
2006-10-04 13:22:18 +02:00
|
|
|
#include <mapnik/graphics.hpp>
|
2011-08-31 04:28:38 +02:00
|
|
|
#include <mapnik/palette.hpp>
|
2007-06-12 21:30:58 +02:00
|
|
|
#include <mapnik/image_util.hpp>
|
2008-02-19 12:28:20 +01:00
|
|
|
#include <mapnik/image_reader.hpp>
|
2011-09-13 17:31:07 +02:00
|
|
|
#include <mapnik/image_compositing.hpp>
|
2010-06-03 21:50:27 +02:00
|
|
|
|
2009-01-17 21:34:58 +01:00
|
|
|
// cairo
|
|
|
|
#if defined(HAVE_CAIRO) && defined(HAVE_PYCAIRO)
|
2014-06-09 19:49:54 +02:00
|
|
|
#include <mapnik/cairo/cairo_context.hpp>
|
2015-01-08 22:16:32 +01:00
|
|
|
#include <mapnik/cairo/cairo_image_util.hpp>
|
2009-01-17 21:34:58 +01:00
|
|
|
#include <pycairo.h>
|
2013-10-28 20:46:44 +01:00
|
|
|
#include <cairo.h>
|
2009-01-17 21:34:58 +01:00
|
|
|
#endif
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
using mapnik::image_32;
|
|
|
|
using mapnik::image_reader;
|
2008-02-19 12:28:20 +01:00
|
|
|
using mapnik::get_image_reader;
|
|
|
|
using mapnik::type_from_filename;
|
2007-06-12 21:30:58 +02:00
|
|
|
using mapnik::save_to_file;
|
2011-09-07 17:01:25 +02:00
|
|
|
using mapnik::save_to_string;
|
|
|
|
|
|
|
|
using namespace boost::python;
|
2006-03-30 00:26:55 +02:00
|
|
|
|
2008-01-25 15:40:48 +01:00
|
|
|
// output 'raw' pixels
|
2009-12-16 21:02:06 +01:00
|
|
|
PyObject* tostring1( image_32 const& im)
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
2006-03-30 00:26:55 +02:00
|
|
|
int size = im.width() * im.height() * 4;
|
2010-09-26 14:15:16 +02:00
|
|
|
return
|
2011-11-14 04:54:32 +01:00
|
|
|
#if PY_VERSION_HEX >= 0x03000000
|
2010-09-26 14:15:16 +02:00
|
|
|
::PyBytes_FromStringAndSize
|
|
|
|
#else
|
|
|
|
::PyString_FromStringAndSize
|
|
|
|
#endif
|
|
|
|
((const char*)im.raw_data(),size);
|
2006-02-01 00:09:52 +01:00
|
|
|
}
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2008-01-25 15:40:48 +01:00
|
|
|
// encode (png,jpeg)
|
2009-12-16 21:02:06 +01:00
|
|
|
PyObject* tostring2(image_32 const & im, std::string const& format)
|
2008-01-25 15:40:48 +01:00
|
|
|
{
|
2011-10-03 10:47:25 +02:00
|
|
|
std::string s = save_to_string(im, format);
|
2010-09-26 14:15:16 +02:00
|
|
|
return
|
2011-11-14 04:54:32 +01:00
|
|
|
#if PY_VERSION_HEX >= 0x03000000
|
2010-09-26 14:15:16 +02:00
|
|
|
::PyBytes_FromStringAndSize
|
|
|
|
#else
|
|
|
|
::PyString_FromStringAndSize
|
|
|
|
#endif
|
2011-11-14 04:54:32 +01:00
|
|
|
(s.data(),s.size());
|
2008-01-25 15:40:48 +01:00
|
|
|
}
|
|
|
|
|
2011-09-09 14:40:30 +02:00
|
|
|
PyObject* tostring3(image_32 const & im, std::string const& format, mapnik::rgba_palette const& pal)
|
2011-08-31 04:28:38 +02:00
|
|
|
{
|
|
|
|
std::string s = save_to_string(im, format, pal);
|
|
|
|
return
|
2011-11-14 04:54:32 +01:00
|
|
|
#if PY_VERSION_HEX >= 0x03000000
|
2011-08-31 04:28:38 +02:00
|
|
|
::PyBytes_FromStringAndSize
|
|
|
|
#else
|
|
|
|
::PyString_FromStringAndSize
|
|
|
|
#endif
|
2011-11-14 04:54:32 +01:00
|
|
|
(s.data(),s.size());
|
2011-08-31 04:28:38 +02:00
|
|
|
}
|
|
|
|
|
2011-09-09 14:40:30 +02:00
|
|
|
|
|
|
|
void save_to_file1(mapnik::image_32 const& im, std::string const& filename)
|
2011-08-31 04:28:38 +02:00
|
|
|
{
|
2011-09-09 14:40:30 +02:00
|
|
|
save_to_file(im,filename);
|
2011-08-31 04:28:38 +02:00
|
|
|
}
|
|
|
|
|
2011-09-09 14:40:30 +02:00
|
|
|
void save_to_file2(mapnik::image_32 const& im, std::string const& filename, std::string const& type)
|
2011-08-31 04:28:38 +02:00
|
|
|
{
|
2011-09-09 14:40:30 +02:00
|
|
|
save_to_file(im,filename,type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void save_to_file3(mapnik::image_32 const& im, std::string const& filename, std::string const& type, mapnik::rgba_palette const& pal)
|
|
|
|
{
|
|
|
|
save_to_file(im,filename,type,pal);
|
2011-08-31 04:28:38 +02:00
|
|
|
}
|
|
|
|
|
2011-09-14 21:31:57 +02:00
|
|
|
bool painted(mapnik::image_32 const& im)
|
|
|
|
{
|
|
|
|
return im.painted();
|
|
|
|
}
|
|
|
|
|
2013-02-22 22:40:05 +01:00
|
|
|
bool is_solid(mapnik::image_32 const& im)
|
|
|
|
{
|
|
|
|
if (im.width() > 0 && im.height() > 0)
|
|
|
|
{
|
2014-12-04 11:02:42 +01:00
|
|
|
mapnik::image_data_rgba8 const & data = im.data();
|
|
|
|
mapnik::image_data_rgba8::pixel_type const* first_row = data.getRow(0);
|
|
|
|
mapnik::image_data_rgba8::pixel_type const first_pixel = first_row[0];
|
2013-02-22 22:40:05 +01:00
|
|
|
for (unsigned y = 0; y < im.height(); ++y)
|
|
|
|
{
|
2014-12-04 11:02:42 +01:00
|
|
|
mapnik::image_data_rgba8::pixel_type const * row = data.getRow(y);
|
2013-02-22 22:40:05 +01:00
|
|
|
for (unsigned x = 0; x < im.width(); ++x)
|
|
|
|
{
|
|
|
|
if (first_pixel != row[x])
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-07 02:44:15 +02:00
|
|
|
unsigned get_pixel(mapnik::image_32 const& im, int x, int y)
|
|
|
|
{
|
|
|
|
if (x < static_cast<int>(im.width()) && y < static_cast<int>(im.height()))
|
|
|
|
{
|
2014-12-04 11:02:42 +01:00
|
|
|
mapnik::image_data_rgba8 const & data = im.data();
|
2012-07-07 02:44:15 +02:00
|
|
|
return data(x,y);
|
|
|
|
}
|
|
|
|
PyErr_SetString(PyExc_IndexError, "invalid x,y for image dimensions");
|
|
|
|
boost::python::throw_error_already_set();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-02-23 15:32:20 +01:00
|
|
|
void set_pixel(mapnik::image_32 & im, unsigned x, unsigned y, mapnik::color const& c)
|
|
|
|
{
|
|
|
|
im.setPixel(x, y, c.rgba());
|
2012-03-13 15:59:22 +01:00
|
|
|
}
|
2007-08-01 11:59:23 +02:00
|
|
|
|
2013-09-20 15:00:11 +02:00
|
|
|
std::shared_ptr<image_32> open_from_file(std::string const& filename)
|
2008-02-19 12:28:20 +01:00
|
|
|
{
|
2009-12-16 21:02:06 +01:00
|
|
|
boost::optional<std::string> type = type_from_filename(filename);
|
|
|
|
if (type)
|
|
|
|
{
|
2013-04-19 10:50:50 +02:00
|
|
|
std::unique_ptr<image_reader> reader(get_image_reader(filename,*type));
|
2010-06-02 13:03:30 +02:00
|
|
|
if (reader.get())
|
|
|
|
{
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2013-09-20 15:00:11 +02:00
|
|
|
std::shared_ptr<image_32> image_ptr = std::make_shared<image_32>(reader->width(),reader->height());
|
2010-06-02 13:03:30 +02:00
|
|
|
reader->read(0,0,image_ptr->data());
|
|
|
|
return image_ptr;
|
|
|
|
}
|
2011-11-14 04:54:32 +01:00
|
|
|
throw mapnik::image_reader_exception("Failed to load: " + filename);
|
2009-12-16 21:02:06 +01:00
|
|
|
}
|
|
|
|
throw mapnik::image_reader_exception("Unsupported image format:" + filename);
|
2008-02-19 12:28:20 +01:00
|
|
|
}
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2013-09-20 15:00:11 +02:00
|
|
|
std::shared_ptr<image_32> fromstring(std::string const& str)
|
2013-04-12 13:46:40 +02:00
|
|
|
{
|
2013-04-19 10:50:50 +02:00
|
|
|
std::unique_ptr<image_reader> reader(get_image_reader(str.c_str(),str.size()));
|
2013-04-12 13:46:40 +02:00
|
|
|
if (reader.get())
|
|
|
|
{
|
2013-09-20 15:00:11 +02:00
|
|
|
std::shared_ptr<image_32> image_ptr = std::make_shared<image_32>(reader->width(),reader->height());
|
2013-04-12 13:46:40 +02:00
|
|
|
reader->read(0,0,image_ptr->data());
|
|
|
|
return image_ptr;
|
|
|
|
}
|
|
|
|
throw mapnik::image_reader_exception("Failed to load image from buffer" );
|
|
|
|
}
|
|
|
|
|
2013-09-20 15:00:11 +02:00
|
|
|
std::shared_ptr<image_32> frombuffer(PyObject * obj)
|
2013-04-12 13:46:40 +02:00
|
|
|
{
|
|
|
|
void const* buffer=0;
|
|
|
|
Py_ssize_t buffer_len;
|
|
|
|
if (PyObject_AsReadBuffer(obj, &buffer, &buffer_len) == 0)
|
|
|
|
{
|
2013-04-19 10:50:50 +02:00
|
|
|
std::unique_ptr<image_reader> reader(get_image_reader(reinterpret_cast<char const*>(buffer),buffer_len));
|
2013-04-12 13:46:40 +02:00
|
|
|
if (reader.get())
|
|
|
|
{
|
2013-09-20 15:00:11 +02:00
|
|
|
std::shared_ptr<image_32> image_ptr = std::make_shared<image_32>(reader->width(),reader->height());
|
2013-04-12 13:46:40 +02:00
|
|
|
reader->read(0,0,image_ptr->data());
|
|
|
|
return image_ptr;
|
|
|
|
}
|
|
|
|
}
|
2013-04-19 10:50:50 +02:00
|
|
|
throw mapnik::image_reader_exception("Failed to load image from buffer" );
|
2013-04-12 13:46:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
void blend (image_32 & im, unsigned x, unsigned y, image_32 const& im2, float opacity)
|
2007-08-01 11:59:23 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
im.set_rectangle_alpha2(im2.data(),x,y,opacity);
|
2007-08-01 11:59:23 +02:00
|
|
|
}
|
|
|
|
|
2012-06-19 00:50:32 +02:00
|
|
|
void composite(image_32 & dst, image_32 & src, mapnik::composite_mode_e mode, float opacity)
|
2010-07-03 22:08:49 +02:00
|
|
|
{
|
2012-06-21 21:44:57 +02:00
|
|
|
mapnik::composite(dst.data(),src.data(),mode,opacity,0,0,false);
|
2010-07-03 22:08:49 +02:00
|
|
|
}
|
|
|
|
|
2009-01-28 22:11:10 +01:00
|
|
|
#if defined(HAVE_CAIRO) && defined(HAVE_PYCAIRO)
|
2013-09-20 15:00:11 +02:00
|
|
|
std::shared_ptr<image_32> from_cairo(PycairoSurface* py_surface)
|
2009-01-17 21:34:58 +01:00
|
|
|
{
|
2013-10-28 20:46:44 +01:00
|
|
|
mapnik::cairo_surface_ptr surface(cairo_surface_reference(py_surface->surface), mapnik::cairo_surface_closer());
|
2015-01-08 22:16:32 +01:00
|
|
|
std::shared_ptr<image_32> image_ptr = std::make_shared<image_32>(cairo_image_surface_get_width(&*surface), cairo_image_surface_get_height(&*surface));
|
|
|
|
cairo_image_to_rgba8(image_ptr->data(), image_surface);
|
2009-01-17 21:34:58 +01:00
|
|
|
return image_ptr;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-02-01 00:09:52 +01:00
|
|
|
void export_image()
|
|
|
|
{
|
|
|
|
using namespace boost::python;
|
2012-10-02 02:41:07 +02:00
|
|
|
// NOTE: must match list in include/mapnik/image_compositing.hpp
|
2011-09-13 17:31:07 +02:00
|
|
|
enum_<mapnik::composite_mode_e>("CompositeOp")
|
|
|
|
.value("clear", mapnik::clear)
|
|
|
|
.value("src", mapnik::src)
|
|
|
|
.value("dst", mapnik::dst)
|
|
|
|
.value("src_over", mapnik::src_over)
|
2011-11-14 04:54:32 +01:00
|
|
|
.value("dst_over", mapnik::dst_over)
|
2011-09-13 17:31:07 +02:00
|
|
|
.value("src_in", mapnik::src_in)
|
|
|
|
.value("dst_in", mapnik::dst_in)
|
|
|
|
.value("src_out", mapnik::src_out)
|
|
|
|
.value("dst_out", mapnik::dst_out)
|
|
|
|
.value("src_atop", mapnik::src_atop)
|
|
|
|
.value("dst_atop", mapnik::dst_atop)
|
|
|
|
.value("xor", mapnik::_xor)
|
|
|
|
.value("plus", mapnik::plus)
|
|
|
|
.value("minus", mapnik::minus)
|
|
|
|
.value("multiply", mapnik::multiply)
|
|
|
|
.value("screen", mapnik::screen)
|
|
|
|
.value("overlay", mapnik::overlay)
|
|
|
|
.value("darken", mapnik::darken)
|
|
|
|
.value("lighten", mapnik::lighten)
|
|
|
|
.value("color_dodge", mapnik::color_dodge)
|
|
|
|
.value("color_burn", mapnik::color_burn)
|
|
|
|
.value("hard_light", mapnik::hard_light)
|
|
|
|
.value("soft_light", mapnik::soft_light)
|
|
|
|
.value("difference", mapnik::difference)
|
|
|
|
.value("exclusion", mapnik::exclusion)
|
|
|
|
.value("contrast", mapnik::contrast)
|
|
|
|
.value("invert", mapnik::invert)
|
2012-10-02 02:41:07 +02:00
|
|
|
.value("grain_merge", mapnik::grain_merge)
|
|
|
|
.value("grain_extract", mapnik::grain_extract)
|
|
|
|
.value("hue", mapnik::hue)
|
|
|
|
.value("saturation", mapnik::saturation)
|
|
|
|
.value("color", mapnik::_color)
|
|
|
|
.value("value", mapnik::_value)
|
2014-08-04 21:10:26 +02:00
|
|
|
.value("linear_dodge", mapnik::linear_dodge)
|
|
|
|
.value("linear_burn", mapnik::linear_burn)
|
|
|
|
.value("divide", mapnik::divide)
|
2010-07-03 22:08:49 +02:00
|
|
|
;
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2013-09-20 15:00:11 +02:00
|
|
|
class_<image_32,std::shared_ptr<image_32> >("Image","This class represents a 32 bit RGBA image.",init<int,int>())
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("width",&image_32::width)
|
|
|
|
.def("height",&image_32::height)
|
|
|
|
.def("view",&image_32::get_view)
|
2011-09-14 21:31:57 +02:00
|
|
|
.def("painted",&painted)
|
2013-02-22 22:40:05 +01:00
|
|
|
.def("is_solid",&is_solid)
|
2010-06-02 13:03:30 +02:00
|
|
|
.add_property("background",make_function
|
|
|
|
(&image_32::get_background,return_value_policy<copy_const_reference>()),
|
|
|
|
&image_32::set_background, "The background color of the image.")
|
2010-09-24 17:37:19 +02:00
|
|
|
.def("set_grayscale_to_alpha",&image_32::set_grayscale_to_alpha, "Set the grayscale values to the alpha channel of the Image")
|
|
|
|
.def("set_color_to_alpha",&image_32::set_color_to_alpha, "Set a given color to the alpha channel of the Image")
|
|
|
|
.def("set_alpha",&image_32::set_alpha, "Set the overall alpha channel of the Image")
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("blend",&blend)
|
2012-05-12 00:19:05 +02:00
|
|
|
.def("composite",&composite,
|
|
|
|
( arg("self"),
|
|
|
|
arg("image"),
|
2012-10-04 23:19:36 +02:00
|
|
|
arg("mode")=mapnik::src_over,
|
2012-05-12 00:19:05 +02:00
|
|
|
arg("opacity")=1.0f
|
|
|
|
))
|
2013-07-02 22:01:23 +02:00
|
|
|
.def("premultiplied",&image_32::premultiplied)
|
2012-06-21 21:44:57 +02:00
|
|
|
.def("premultiply",&image_32::premultiply)
|
|
|
|
.def("demultiply",&image_32::demultiply)
|
2012-02-23 15:32:20 +01:00
|
|
|
.def("set_pixel",&set_pixel)
|
2012-07-07 02:44:15 +02:00
|
|
|
.def("get_pixel",&get_pixel)
|
2012-11-12 06:35:50 +01:00
|
|
|
.def("clear",&image_32::clear)
|
2010-09-26 14:15:16 +02:00
|
|
|
//TODO(haoyu) The method name 'tostring' might be confusing since they actually return bytes in Python 3
|
2011-11-14 04:54:32 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("tostring",&tostring1)
|
|
|
|
.def("tostring",&tostring2)
|
2011-08-31 04:28:38 +02:00
|
|
|
.def("tostring",&tostring3)
|
|
|
|
.def("save", &save_to_file1)
|
|
|
|
.def("save", &save_to_file2)
|
2011-09-09 14:40:30 +02:00
|
|
|
.def("save", &save_to_file3)
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("open",open_from_file)
|
|
|
|
.staticmethod("open")
|
2013-04-12 13:46:40 +02:00
|
|
|
.def("frombuffer",&frombuffer)
|
|
|
|
.staticmethod("frombuffer")
|
|
|
|
.def("fromstring",&fromstring)
|
|
|
|
.staticmethod("fromstring")
|
2009-01-28 22:11:10 +01:00
|
|
|
#if defined(HAVE_CAIRO) && defined(HAVE_PYCAIRO)
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("from_cairo",&from_cairo)
|
|
|
|
.staticmethod("from_cairo")
|
2009-01-17 21:34:58 +01:00
|
|
|
#endif
|
2011-11-14 04:54:32 +01:00
|
|
|
;
|
|
|
|
|
2006-02-01 00:09:52 +01:00
|
|
|
}
|