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
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
* Copyright (C) 2006 Artem Pavlenko
|
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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
*
|
2006-03-31 12:32:02 +02:00
|
|
|
*****************************************************************************/
|
2005-06-14 17:06:59 +02:00
|
|
|
|
|
|
|
//$Id: image_util.cpp 36 2005-04-05 14:32:18Z pavlenko $
|
|
|
|
|
2009-02-15 12:56:54 +01:00
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#include <png.h>
|
|
|
|
}
|
|
|
|
|
2006-10-04 13:22:18 +02:00
|
|
|
// mapnik
|
2007-10-08 19:42:41 +02:00
|
|
|
#include <mapnik/image_util.hpp>
|
2008-01-23 12:34:59 +01:00
|
|
|
#include <mapnik/png_io.hpp>
|
|
|
|
#include <mapnik/jpeg_io.hpp>
|
2006-10-04 13:22:18 +02:00
|
|
|
#include <mapnik/graphics.hpp>
|
|
|
|
#include <mapnik/memory.hpp>
|
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 <mapnik/image_view.hpp>
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2007-10-08 19:42:41 +02:00
|
|
|
// stl
|
|
|
|
#include <string>
|
2007-10-17 16:47:56 +02:00
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
2009-04-07 17:48:51 +02:00
|
|
|
#include <sstream>
|
2007-10-08 19:42:41 +02:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
namespace mapnik
|
2007-10-17 16:47:56 +02:00
|
|
|
{
|
2009-07-14 00:36:16 +02:00
|
|
|
template <typename T>
|
|
|
|
std::string save_to_string(T const& image,
|
|
|
|
std::string const& type)
|
|
|
|
{
|
|
|
|
std::ostringstream ss(std::ios::out|std::ios::binary);
|
|
|
|
//all this should go into image_writer factory
|
|
|
|
if (type=="png") save_as_png(ss,image);
|
|
|
|
else if (type == "png256") save_as_png256(ss,image);
|
|
|
|
else if (boost::algorithm::istarts_with(type,std::string("jpeg")))
|
|
|
|
{
|
|
|
|
int quality = 85;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if(type.substr(4).length() != 0)
|
|
|
|
{
|
|
|
|
quality = boost::lexical_cast<int>(type.substr(4));
|
|
|
|
if(quality<1 || quality>100)
|
|
|
|
throw ImageWriterException("invalid jpeg quality: " + type.substr(4));
|
|
|
|
}
|
|
|
|
save_as_jpeg(ss,quality,image);
|
|
|
|
}
|
|
|
|
catch(boost::bad_lexical_cast &)
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid jpeg quality: " + type.substr(4));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
|
|
|
return ss.str();
|
|
|
|
}
|
2009-01-19 23:51:55 +01:00
|
|
|
|
2009-07-14 00:36:16 +02:00
|
|
|
template <typename T>
|
|
|
|
void save_to_file(T const& image,
|
|
|
|
std::string const& filename,
|
|
|
|
std::string const& type)
|
|
|
|
{
|
|
|
|
std::ofstream file (filename.c_str(), std::ios::out| std::ios::trunc|std::ios::binary);
|
|
|
|
if (file)
|
|
|
|
{
|
|
|
|
//all this should go into image_writer factory
|
|
|
|
if (type=="png") save_as_png(file,image);
|
|
|
|
else if (type == "png256") save_as_png256(file,image);
|
|
|
|
else if (boost::algorithm::istarts_with(type,std::string("jpeg")))
|
|
|
|
{
|
|
|
|
int quality = 85;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if(type.substr(4).length() != 0)
|
|
|
|
{
|
|
|
|
quality = boost::lexical_cast<int>(type.substr(4));
|
|
|
|
if(quality<0 || quality>100)
|
|
|
|
throw ImageWriterException("invalid jpeg quality: " + type.substr(4) + " out of bounds");
|
|
|
|
}
|
|
|
|
save_as_jpeg(file,quality,image);
|
|
|
|
}
|
|
|
|
catch(boost::bad_lexical_cast &)
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid jpeg quality: " + type.substr(4) + " not a number");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
2009-07-26 03:15:44 +02:00
|
|
|
}
|
2009-07-14 00:36:16 +02:00
|
|
|
}
|
2009-04-07 17:48:51 +02:00
|
|
|
|
2009-07-14 00:36:16 +02:00
|
|
|
template <typename T>
|
|
|
|
void save_to_file(T const& image,std::string const& filename)
|
|
|
|
{
|
2009-12-16 21:02:06 +01:00
|
|
|
boost::optional<std::string> type = type_from_filename(filename);
|
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
save_to_file<T>(image,filename,*type);
|
|
|
|
}
|
2009-07-14 00:36:16 +02:00
|
|
|
}
|
2009-07-26 03:15:44 +02:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
template void save_to_file<image_data_32>(image_data_32 const&,
|
2009-07-14 00:36:16 +02:00
|
|
|
std::string const&,
|
|
|
|
std::string const&);
|
2009-07-26 03:15:44 +02:00
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
template void save_to_file<image_data_32>(image_data_32 const&,
|
2009-07-14 00:36:16 +02:00
|
|
|
std::string const&);
|
2007-12-06 13:14:29 +01:00
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
template std::string save_to_string<image_data_32>(image_data_32 const&,
|
2009-07-14 00:36:16 +02:00
|
|
|
std::string const&);
|
2009-01-19 23:51:55 +01:00
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
template void save_to_file<image_view<image_data_32> > (image_view<image_data_32> const&,
|
2009-07-14 00:36:16 +02:00
|
|
|
std::string const&,
|
|
|
|
std::string const&);
|
2007-12-10 20:59:17 +01:00
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
template void save_to_file<image_view<image_data_32> > (image_view<image_data_32> const&,
|
2009-07-14 00:36:16 +02:00
|
|
|
std::string const&);
|
2007-12-06 13:14:29 +01:00
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
template std::string save_to_string<image_view<image_data_32> > (image_view<image_data_32> const&,
|
2009-07-14 00:36:16 +02:00
|
|
|
std::string const&);
|
2009-01-19 23:51:55 +01:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|