1. hit_test implementation for geometry objects:
bool hit_test(double x, double y, double tol);
2. added image_view(unsigned x, unsigned y, unsigned width, unsigned height)
allowing to select region from image data e.g (in Python):
im = Image(2048,2048)
view = im.view(0,0,256,256)
save_to_file(filename,type, view)
3. changed envelope method to return vy value in datasource classes
4. features_at_point impl for shape and postgis plug-ins
2006-11-25 12:02:59 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Artem Pavlenko, Jean-Francois Doyon
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
//$Id$
|
|
|
|
|
2008-02-07 11:14:14 +01:00
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#include <png.h>
|
|
|
|
}
|
|
|
|
|
1. hit_test implementation for geometry objects:
bool hit_test(double x, double y, double tol);
2. added image_view(unsigned x, unsigned y, unsigned width, unsigned height)
allowing to select region from image data e.g (in Python):
im = Image(2048,2048)
view = im.view(0,0,256,256)
save_to_file(filename,type, view)
3. changed envelope method to return vy value in datasource classes
4. features_at_point impl for shape and postgis plug-ins
2006-11-25 12:02:59 +01:00
|
|
|
#include <boost/python.hpp>
|
|
|
|
#include <mapnik/image_util.hpp>
|
|
|
|
#include <mapnik/image_view.hpp>
|
2008-01-25 15:40:48 +01:00
|
|
|
#include <mapnik/png_io.hpp>
|
|
|
|
#include <sstream>
|
1. hit_test implementation for geometry objects:
bool hit_test(double x, double y, double tol);
2. added image_view(unsigned x, unsigned y, unsigned width, unsigned height)
allowing to select region from image data e.g (in Python):
im = Image(2048,2048)
view = im.view(0,0,256,256)
save_to_file(filename,type, view)
3. changed envelope method to return vy value in datasource classes
4. features_at_point impl for shape and postgis plug-ins
2006-11-25 12:02:59 +01:00
|
|
|
|
2010-06-03 21:50:27 +02:00
|
|
|
// jpeg
|
|
|
|
#if defined(HAVE_JPEG)
|
|
|
|
#include <mapnik/jpeg_io.hpp>
|
|
|
|
#endif
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
using mapnik::image_data_32;
|
1. hit_test implementation for geometry objects:
bool hit_test(double x, double y, double tol);
2. added image_view(unsigned x, unsigned y, unsigned width, unsigned height)
allowing to select region from image data e.g (in Python):
im = Image(2048,2048)
view = im.view(0,0,256,256)
save_to_file(filename,type, view)
3. changed envelope method to return vy value in datasource classes
4. features_at_point impl for shape and postgis plug-ins
2006-11-25 12:02:59 +01:00
|
|
|
using mapnik::image_view;
|
|
|
|
using mapnik::save_to_file;
|
|
|
|
|
2008-01-25 15:40:48 +01:00
|
|
|
// output 'raw' pixels
|
2009-12-16 21:02:06 +01:00
|
|
|
PyObject* view_tostring1(image_view<image_data_32> const& view)
|
2008-01-25 15:40:48 +01:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
std::ostringstream ss(std::ios::out|std::ios::binary);
|
|
|
|
for (unsigned i=0;i<view.height();i++)
|
|
|
|
{
|
|
|
|
ss.write(reinterpret_cast<const char*>(view.getRow(i)),
|
|
|
|
view.width() * sizeof(image_view<image_data_32>::pixel_type));
|
|
|
|
}
|
|
|
|
return ::PyString_FromStringAndSize((const char*)ss.str().c_str(),ss.str().size());
|
2008-01-25 15:40:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// encode (png,jpeg)
|
2009-12-16 21:02:06 +01:00
|
|
|
PyObject* view_tostring2(image_view<image_data_32> const & view, std::string const& format)
|
2008-01-25 15:40:48 +01:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
std::string s = save_to_string(view, format);
|
|
|
|
return ::PyString_FromStringAndSize(s.data(),s.size());
|
2008-01-25 15:40:48 +01:00
|
|
|
}
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
void (*save_view1)(image_view<image_data_32> const&, std::string const&,std::string const&) = mapnik::save_to_file;
|
|
|
|
void (*save_view2)(image_view<image_data_32> const&, std::string const&) = mapnik::save_to_file;
|
2007-12-10 20:59:17 +01:00
|
|
|
|
1. hit_test implementation for geometry objects:
bool hit_test(double x, double y, double tol);
2. added image_view(unsigned x, unsigned y, unsigned width, unsigned height)
allowing to select region from image data e.g (in Python):
im = Image(2048,2048)
view = im.view(0,0,256,256)
save_to_file(filename,type, view)
3. changed envelope method to return vy value in datasource classes
4. features_at_point impl for shape and postgis plug-ins
2006-11-25 12:02:59 +01:00
|
|
|
void export_image_view()
|
|
|
|
{
|
|
|
|
using namespace boost::python;
|
2009-12-16 21:02:06 +01:00
|
|
|
class_<image_view<image_data_32> >("ImageView","A view into an image.",no_init)
|
2010-06-02 13:03:30 +02:00
|
|
|
.def("width",&image_view<image_data_32>::width)
|
|
|
|
.def("height",&image_view<image_data_32>::height)
|
|
|
|
.def("tostring",&view_tostring1)
|
|
|
|
.def("tostring",&view_tostring2)
|
|
|
|
.def("save",save_view1)
|
|
|
|
.def("save",save_view2)
|
|
|
|
;
|
1. hit_test implementation for geometry objects:
bool hit_test(double x, double y, double tol);
2. added image_view(unsigned x, unsigned y, unsigned width, unsigned height)
allowing to select region from image data e.g (in Python):
im = Image(2048,2048)
view = im.view(0,0,256,256)
save_to_file(filename,type, view)
3. changed envelope method to return vy value in datasource classes
4. features_at_point impl for shape and postgis plug-ins
2006-11-25 12:02:59 +01:00
|
|
|
}
|