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>
|
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>
|
2011-08-31 04:28:14 +02:00
|
|
|
#include <mapnik/palette.hpp>
|
2010-06-18 17:38:29 +02:00
|
|
|
#include <mapnik/map.hpp>
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2011-01-27 04:47:54 +01:00
|
|
|
// boost
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
|
2010-06-03 21:50:27 +02:00
|
|
|
// jpeg
|
|
|
|
#if defined(HAVE_JPEG)
|
|
|
|
#include <mapnik/jpeg_io.hpp>
|
|
|
|
#endif
|
|
|
|
|
2010-01-11 19:55:30 +01:00
|
|
|
#ifdef HAVE_CAIRO
|
|
|
|
#include <mapnik/cairo_renderer.hpp>
|
|
|
|
#endif
|
|
|
|
|
2010-03-12 19:23:06 +01:00
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include <boost/tokenizer.hpp>
|
|
|
|
|
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
|
|
|
|
2011-01-27 04:47:54 +01:00
|
|
|
// agg
|
|
|
|
//#include "agg_conv_transform.h"
|
|
|
|
#include "agg_image_accessors.h"
|
|
|
|
#include "agg_pixfmt_rgba.h"
|
|
|
|
#include "agg_rasterizer_scanline_aa.h"
|
|
|
|
#include "agg_renderer_scanline.h"
|
|
|
|
#include "agg_rendering_buffer.h"
|
|
|
|
#include "agg_scanline_u.h"
|
|
|
|
//#include "agg_scanline_p.h"
|
|
|
|
#include "agg_span_allocator.h"
|
|
|
|
#include "agg_span_image_filter_rgba.h"
|
|
|
|
#include "agg_span_interpolator_linear.h"
|
|
|
|
#include "agg_trans_affine.h"
|
|
|
|
#include "agg_image_filters.h"
|
|
|
|
|
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
namespace mapnik
|
2007-10-17 16:47:56 +02:00
|
|
|
{
|
2011-08-31 04:28:14 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
template <typename T>
|
|
|
|
std::string save_to_string(T const& image,
|
2011-08-31 04:28:14 +02:00
|
|
|
std::string const& type,
|
|
|
|
rgba_palette& palette)
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
|
|
|
std::ostringstream ss(std::ios::out|std::ios::binary);
|
2011-08-31 04:28:14 +02:00
|
|
|
save_to_stream(image, ss, type, palette);
|
2010-06-02 13:03:30 +02:00
|
|
|
return ss.str();
|
|
|
|
}
|
2009-01-19 23:51:55 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
template <typename T>
|
|
|
|
void save_to_file(T const& image,
|
|
|
|
std::string const& filename,
|
2011-08-31 04:28:14 +02:00
|
|
|
std::string const& type,
|
|
|
|
rgba_palette& palette)
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
|
|
|
std::ofstream file (filename.c_str(), std::ios::out| std::ios::trunc|std::ios::binary);
|
|
|
|
if (file)
|
2009-07-14 00:36:16 +02:00
|
|
|
{
|
2011-08-31 04:28:14 +02:00
|
|
|
save_to_stream(image, file, type, palette);
|
2010-03-12 19:23:06 +01:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
else throw ImageWriterException("Could not write file to " + filename );
|
|
|
|
}
|
2010-03-12 19:23:06 +01:00
|
|
|
|
2011-09-07 02:45:18 +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)
|
|
|
|
{
|
|
|
|
save_to_stream(image, file, type);
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("Could not write file to " + filename );
|
|
|
|
}
|
|
|
|
|
|
|
|
void handle_png_options(std::string const& type,
|
|
|
|
int * colors,
|
|
|
|
int * compression,
|
|
|
|
int * strategy,
|
|
|
|
int * trans_mode,
|
|
|
|
double * gamma,
|
|
|
|
bool * use_octree)
|
|
|
|
{
|
|
|
|
if (type == "png" || type == "png24" || type == "png32")
|
|
|
|
{
|
|
|
|
// Shortcut when the user didn't specify any flags after the colon.
|
|
|
|
// Paletted images specify "png8 or png256".
|
|
|
|
*colors = -1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// TODO - convert to spirit parser
|
|
|
|
if (type.length() > 6){
|
|
|
|
boost::char_separator<char> sep(":");
|
|
|
|
boost::tokenizer< boost::char_separator<char> > tokens(type, sep);
|
|
|
|
BOOST_FOREACH(std::string t, tokens)
|
|
|
|
{
|
|
|
|
if (t == "png" || t == "png24" || t == "png32")
|
|
|
|
{
|
|
|
|
*colors = -1;
|
|
|
|
}
|
|
|
|
else if (t == "m=h")
|
|
|
|
{
|
|
|
|
*use_octree = false;
|
|
|
|
}
|
|
|
|
else if (t == "m=o")
|
|
|
|
{
|
|
|
|
*use_octree = true;
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::istarts_with(t,std::string("c=")))
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (*colors < 0)
|
|
|
|
throw ImageWriterException("invalid color parameter: unavailable for true color images");
|
|
|
|
*colors = boost::lexical_cast<int>(t.substr(2));
|
|
|
|
if (*colors < 0 || *colors > 256)
|
|
|
|
throw ImageWriterException("invalid color parameter: " + t.substr(2) + " out of bounds");
|
|
|
|
}
|
|
|
|
catch(boost::bad_lexical_cast &)
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid color parameter: " + t.substr(2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::istarts_with(t, std::string("t=")))
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (*colors < 0)
|
|
|
|
throw ImageWriterException("invalid trans_mode parameter: unavailable for true color images");
|
|
|
|
*trans_mode = boost::lexical_cast<int>(t.substr(2));
|
|
|
|
if (*trans_mode < 0 || *trans_mode > 2)
|
|
|
|
throw ImageWriterException("invalid trans_mode parameter: " + t.substr(2) + " out of bounds");
|
|
|
|
}
|
|
|
|
catch(boost::bad_lexical_cast &)
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid trans_mode parameter: " + t.substr(2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::istarts_with(t, std::string("g=")))
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (*colors < 0)
|
|
|
|
throw ImageWriterException("invalid gamma parameter: unavailable for true color images");
|
|
|
|
*gamma = boost::lexical_cast<double>(t.substr(2));
|
|
|
|
if (*gamma < 0)
|
|
|
|
throw ImageWriterException("invalid gamma parameter: " + t.substr(2) + " out of bounds");
|
|
|
|
}
|
|
|
|
catch(boost::bad_lexical_cast &)
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid gamma parameter: " + t.substr(2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::istarts_with(t,std::string("z=")))
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
*compression = boost::lexical_cast<int>(t.substr(2));
|
|
|
|
/*
|
|
|
|
#define Z_NO_COMPRESSION 0
|
|
|
|
#define Z_BEST_SPEED 1
|
|
|
|
#define Z_BEST_COMPRESSION 9
|
|
|
|
#define Z_DEFAULT_COMPRESSION (-1)
|
|
|
|
*/
|
|
|
|
if (*compression < Z_DEFAULT_COMPRESSION || *compression > Z_BEST_COMPRESSION)
|
|
|
|
throw ImageWriterException("invalid compression parameter: " + t.substr(2) + " out of bounds (only -1 through 9 are valid)");
|
|
|
|
}
|
|
|
|
catch(boost::bad_lexical_cast &)
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid compression parameter: " + t.substr(2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::istarts_with(t,std::string("s=")))
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
std::string s = boost::lexical_cast<std::string>(t.substr(2));
|
|
|
|
if (s == "default") *strategy = Z_DEFAULT_STRATEGY;
|
|
|
|
else if (s == "filtered") *strategy = Z_FILTERED;
|
|
|
|
else if (s == "huff") *strategy = Z_HUFFMAN_ONLY;
|
|
|
|
else if (s == "rle") *strategy = Z_RLE;
|
|
|
|
else
|
|
|
|
throw ImageWriterException("invalid compression strategy parameter: " + s);
|
|
|
|
}
|
|
|
|
catch(boost::bad_lexical_cast &)
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid compression strategy parameter: " + t.substr(2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
template <typename T>
|
|
|
|
void save_to_stream(T const& image,
|
|
|
|
std::ostream & stream,
|
2011-08-31 04:28:14 +02:00
|
|
|
std::string const& type,
|
|
|
|
rgba_palette& palette)
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
|
|
|
if (stream)
|
2010-03-12 19:23:06 +01:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
//all this should go into image_writer factory
|
2011-08-26 07:58:21 +02:00
|
|
|
if (type == "png" || boost::algorithm::istarts_with(type, std::string("png")))
|
2009-07-14 00:36:16 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
int colors = 256;
|
2011-08-26 07:58:21 +02:00
|
|
|
int compression = Z_DEFAULT_COMPRESSION;
|
|
|
|
int strategy = Z_DEFAULT_STRATEGY;
|
2010-06-02 13:03:30 +02:00
|
|
|
int trans_mode = -1;
|
|
|
|
double gamma = -1;
|
|
|
|
bool use_octree = true;
|
2011-08-26 07:58:21 +02:00
|
|
|
|
2011-09-07 02:45:18 +02:00
|
|
|
handle_png_options(type,
|
|
|
|
&colors,
|
|
|
|
&compression,
|
|
|
|
&strategy,
|
|
|
|
&trans_mode,
|
|
|
|
&gamma,
|
|
|
|
&use_octree);
|
2011-08-26 07:58:21 +02:00
|
|
|
|
2011-08-31 04:28:14 +02:00
|
|
|
if (&palette != NULL && palette.valid())
|
|
|
|
save_as_png8_pal(stream, image, palette, compression, strategy);
|
|
|
|
else if (colors < 0)
|
2011-08-26 07:58:21 +02:00
|
|
|
save_as_png(stream, image, compression, strategy);
|
|
|
|
else if (use_octree)
|
2011-08-31 04:28:14 +02:00
|
|
|
save_as_png8_oct(stream, image, colors, compression, strategy);
|
2010-06-02 13:03:30 +02:00
|
|
|
else
|
2011-08-31 04:28:14 +02:00
|
|
|
save_as_png8_hex(stream, image, colors, compression, strategy, trans_mode, gamma);
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
2011-09-07 02:45:18 +02:00
|
|
|
#if defined(HAVE_JPEG)
|
|
|
|
else if (boost::algorithm::istarts_with(type,std::string("jpeg")))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("palettes are not currently supported when writing to jpeg format");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("Could not write to empty stream" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void save_to_stream(T const& image,
|
|
|
|
std::ostream & stream,
|
|
|
|
std::string const& type)
|
|
|
|
{
|
|
|
|
if (stream)
|
|
|
|
{
|
|
|
|
//all this should go into image_writer factory
|
|
|
|
if (type == "png" || boost::algorithm::istarts_with(type, std::string("png")))
|
|
|
|
{
|
|
|
|
int colors = 256;
|
|
|
|
int compression = Z_DEFAULT_COMPRESSION;
|
|
|
|
int strategy = Z_DEFAULT_STRATEGY;
|
|
|
|
int trans_mode = -1;
|
|
|
|
double gamma = -1;
|
|
|
|
bool use_octree = true;
|
|
|
|
|
|
|
|
handle_png_options(type,
|
|
|
|
&colors,
|
|
|
|
&compression,
|
|
|
|
&strategy,
|
|
|
|
&trans_mode,
|
|
|
|
&gamma,
|
|
|
|
&use_octree);
|
|
|
|
|
|
|
|
if (colors < 0)
|
|
|
|
save_as_png(stream, image, compression, strategy);
|
|
|
|
else if (use_octree)
|
|
|
|
save_as_png8_oct(stream, image, colors, compression, strategy);
|
|
|
|
else
|
|
|
|
save_as_png8_hex(stream, image, colors, compression, strategy, trans_mode, gamma);
|
|
|
|
}
|
2010-06-03 21:50:27 +02:00
|
|
|
#if defined(HAVE_JPEG)
|
2010-06-02 13:03:30 +02:00
|
|
|
else if (boost::algorithm::istarts_with(type,std::string("jpeg")))
|
|
|
|
{
|
|
|
|
int quality = 85;
|
|
|
|
try
|
2009-07-14 00:36:16 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
if(type.substr(4).length() != 0)
|
2009-07-14 00:36:16 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
quality = boost::lexical_cast<int>(type.substr(4));
|
|
|
|
if(quality<0 || quality>100)
|
|
|
|
throw ImageWriterException("invalid jpeg quality: " + type.substr(4) + " out of bounds");
|
2009-07-14 00:36:16 +02:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
save_as_jpeg(stream, quality, image);
|
|
|
|
}
|
|
|
|
catch(boost::bad_lexical_cast &)
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid jpeg quality: " + type.substr(4) + " not a number");
|
2009-07-14 00:36:16 +02:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
2010-06-03 21:50:27 +02:00
|
|
|
#endif
|
2010-06-02 13:03:30 +02:00
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("Could not write to empty stream" );
|
|
|
|
}
|
2011-08-31 04:28:14 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
template <typename T>
|
2011-09-07 02:45:18 +02:00
|
|
|
void save_to_file(T const& image, std::string const& filename)
|
|
|
|
{
|
|
|
|
boost::optional<std::string> type = type_from_filename(filename);
|
|
|
|
if (type)
|
|
|
|
{
|
|
|
|
save_to_file<T>(image, filename, *type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void save_to_file(T const& image, std::string const& filename, rgba_palette& palette)
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
|
|
|
boost::optional<std::string> type = type_from_filename(filename);
|
|
|
|
if (type)
|
2009-07-14 00:36:16 +02:00
|
|
|
{
|
2011-08-31 04:28:14 +02:00
|
|
|
save_to_file<T>(image, filename, *type, palette);
|
2009-07-14 00:36:16 +02:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
2010-01-11 19:55:30 +01:00
|
|
|
|
|
|
|
#if defined(HAVE_CAIRO)
|
2010-06-02 13:03:30 +02:00
|
|
|
// TODO - move to separate cairo_io.hpp
|
|
|
|
void save_to_cairo_file(mapnik::Map const& map, std::string const& filename)
|
|
|
|
{
|
|
|
|
boost::optional<std::string> type = type_from_filename(filename);
|
|
|
|
if (type)
|
2010-01-11 19:55:30 +01:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
save_to_cairo_file(map,filename,*type);
|
2010-01-11 19:55:30 +01:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
2010-01-11 19:55:30 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
void save_to_cairo_file(mapnik::Map const& map,
|
|
|
|
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)
|
2010-01-11 19:55:30 +01:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
Cairo::RefPtr<Cairo::Surface> surface;
|
2010-06-25 17:23:35 +02:00
|
|
|
unsigned width = map.width();
|
|
|
|
unsigned height = map.height();
|
2010-06-02 13:03:30 +02:00
|
|
|
if (type == "pdf")
|
|
|
|
surface = Cairo::PdfSurface::create(filename,width,height);
|
|
|
|
else if (type == "svg")
|
|
|
|
surface = Cairo::SvgSurface::create(filename,width,height);
|
|
|
|
else if (type == "ps")
|
|
|
|
surface = Cairo::PsSurface::create(filename,width,height);
|
|
|
|
else if (type == "ARGB32")
|
|
|
|
surface = Cairo::ImageSurface::create(Cairo::FORMAT_ARGB32,width,height);
|
|
|
|
else if (type == "RGB24")
|
|
|
|
surface = Cairo::ImageSurface::create(Cairo::FORMAT_RGB24,width,height);
|
|
|
|
else
|
|
|
|
throw ImageWriterException("unknown file type: " + type);
|
|
|
|
Cairo::RefPtr<Cairo::Context> context = Cairo::Context::create(surface);
|
2010-01-11 19:55:30 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
// TODO - expose as user option
|
|
|
|
/*
|
2010-01-11 19:55:30 +01:00
|
|
|
if (type == "ARGB32" || type == "RGB24")
|
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
context->set_antialias(Cairo::ANTIALIAS_NONE);
|
2010-01-11 19:55:30 +01:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
*/
|
2010-01-11 19:55:30 +01:00
|
|
|
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
mapnik::cairo_renderer<Cairo::Context> ren(map, context);
|
|
|
|
ren.apply();
|
2010-01-11 19:55:30 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
if (type == "ARGB32" || type == "RGB24")
|
|
|
|
{
|
|
|
|
surface->write_to_png(filename);
|
2010-01-11 19:55:30 +01:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
surface->finish();
|
2010-01-11 19:55:30 +01:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
2010-01-11 19:55:30 +01:00
|
|
|
|
|
|
|
#endif
|
2005-06-14 17:06:59 +02:00
|
|
|
|
2011-09-07 02:45:18 +02:00
|
|
|
template void save_to_file<image_data_32>(image_data_32 const&,
|
|
|
|
std::string const&,
|
|
|
|
std::string const&);
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
template void save_to_file<image_data_32>(image_data_32 const&,
|
|
|
|
std::string const&,
|
2011-08-31 04:28:14 +02:00
|
|
|
std::string const&,
|
|
|
|
rgba_palette& palette);
|
2009-07-26 03:15:44 +02:00
|
|
|
|
2011-09-07 02:45:18 +02:00
|
|
|
template void save_to_file<image_data_32>(image_data_32 const&,
|
|
|
|
std::string const&);
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
template void save_to_file<image_data_32>(image_data_32 const&,
|
2011-08-31 04:28:14 +02:00
|
|
|
std::string const&,
|
|
|
|
rgba_palette& palette);
|
2007-12-06 13:14:29 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
template std::string save_to_string<image_data_32>(image_data_32 const&,
|
2011-08-31 04:28:14 +02:00
|
|
|
std::string const&,
|
|
|
|
rgba_palette& palette);
|
2009-01-19 23:51:55 +01:00
|
|
|
|
2011-09-07 02:45:18 +02:00
|
|
|
template void save_to_file<image_view<image_data_32> > (image_view<image_data_32> const&,
|
|
|
|
std::string const&,
|
|
|
|
std::string const&);
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
template void save_to_file<image_view<image_data_32> > (image_view<image_data_32> const&,
|
|
|
|
std::string const&,
|
2011-08-31 04:28:14 +02:00
|
|
|
std::string const&,
|
|
|
|
rgba_palette& palette);
|
2011-09-07 02:45:18 +02:00
|
|
|
|
|
|
|
template void save_to_file<image_view<image_data_32> > (image_view<image_data_32> const&,
|
|
|
|
std::string const&);
|
2007-12-10 20:59:17 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
template void save_to_file<image_view<image_data_32> > (image_view<image_data_32> const&,
|
2011-08-31 04:28:14 +02:00
|
|
|
std::string const&,
|
|
|
|
rgba_palette& palette);
|
2007-12-06 13:14:29 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
template std::string save_to_string<image_view<image_data_32> > (image_view<image_data_32> const&,
|
2011-08-31 04:28:14 +02:00
|
|
|
std::string const&,
|
|
|
|
rgba_palette& palette);
|
2009-01-19 23:51:55 +01:00
|
|
|
|
2011-01-27 04:47:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
// Image scaling functions
|
|
|
|
|
|
|
|
scaling_method_e get_scaling_method_by_name (std::string name)
|
|
|
|
{
|
|
|
|
// TODO - make into proper ENUMS
|
|
|
|
if (name == "fast" || name == "near")
|
|
|
|
return SCALING_NEAR;
|
|
|
|
else if (name == "bilinear")
|
|
|
|
return SCALING_BILINEAR;
|
|
|
|
else if (name == "cubic" || name == "bicubic")
|
|
|
|
return SCALING_BICUBIC;
|
|
|
|
else if (name == "spline16")
|
|
|
|
return SCALING_SPLINE16;
|
|
|
|
else if (name == "spline36")
|
|
|
|
return SCALING_SPLINE36;
|
|
|
|
else if (name == "hanning")
|
|
|
|
return SCALING_HANNING;
|
|
|
|
else if (name == "hamming")
|
|
|
|
return SCALING_HAMMING;
|
|
|
|
else if (name == "hermite")
|
|
|
|
return SCALING_HERMITE;
|
|
|
|
else if (name == "kaiser")
|
|
|
|
return SCALING_KAISER;
|
|
|
|
else if (name == "quadric")
|
|
|
|
return SCALING_QUADRIC;
|
|
|
|
else if (name == "catrom")
|
|
|
|
return SCALING_CATROM;
|
|
|
|
else if (name == "gaussian")
|
|
|
|
return SCALING_GAUSSIAN;
|
|
|
|
else if (name == "bessel")
|
|
|
|
return SCALING_BESSEL;
|
|
|
|
else if (name == "mitchell")
|
|
|
|
return SCALING_MITCHELL;
|
|
|
|
else if (name == "sinc")
|
|
|
|
return SCALING_SINC;
|
|
|
|
else if (name == "lanczos")
|
|
|
|
return SCALING_LANCZOS;
|
|
|
|
else if (name == "blackman")
|
|
|
|
return SCALING_BLACKMAN;
|
|
|
|
else
|
|
|
|
return SCALING_NEAR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this has been replaced by agg impl - see https://trac.mapnik.org/ticket/656
|
2011-05-12 18:43:23 +02:00
|
|
|
|
|
|
|
template <typename Image>
|
|
|
|
void scale_image_bilinear_old (Image& target,const Image& source, double x_off_f, double y_off_f)
|
2011-01-27 04:47:54 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
int source_width=source.width();
|
|
|
|
int source_height=source.height();
|
|
|
|
|
|
|
|
int target_width=target.width();
|
|
|
|
int target_height=target.height();
|
|
|
|
|
|
|
|
if (source_width<1 || source_height<1 ||
|
|
|
|
target_width<1 || target_height<1) return;
|
|
|
|
int x=0,y=0,xs=0,ys=0;
|
|
|
|
int tw2 = target_width/2;
|
|
|
|
int th2 = target_height/2;
|
|
|
|
int offs_x = rint((source_width-target_width-x_off_f*2*source_width)/2);
|
|
|
|
int offs_y = rint((source_height-target_height-y_off_f*2*source_height)/2);
|
|
|
|
unsigned yprt, yprt1, xprt, xprt1;
|
|
|
|
|
|
|
|
//no scaling or subpixel offset
|
|
|
|
if (target_height == source_height && target_width == source_width && offs_x == 0 && offs_y == 0){
|
|
|
|
for (y=0;y<target_height;++y)
|
|
|
|
target.setRow(y,source.getRow(y),target_width);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (y=0;y<target_height;++y)
|
|
|
|
{
|
|
|
|
ys = (y*source_height+offs_y)/target_height;
|
|
|
|
int ys1 = ys+1;
|
|
|
|
if (ys1>=source_height)
|
|
|
|
ys1--;
|
|
|
|
if (ys<0)
|
|
|
|
ys=ys1=0;
|
|
|
|
if (source_height/2<target_height)
|
|
|
|
yprt = (y*source_height+offs_y)%target_height;
|
|
|
|
else
|
|
|
|
yprt = th2;
|
|
|
|
yprt1 = target_height-yprt;
|
|
|
|
for (x=0;x<target_width;++x)
|
|
|
|
{
|
|
|
|
xs = (x*source_width+offs_x)/target_width;
|
|
|
|
if (source_width/2<target_width)
|
|
|
|
xprt = (x*source_width+offs_x)%target_width;
|
|
|
|
else
|
|
|
|
xprt = tw2;
|
|
|
|
xprt1 = target_width-xprt;
|
|
|
|
int xs1 = xs+1;
|
|
|
|
if (xs1>=source_width)
|
|
|
|
xs1--;
|
|
|
|
if (xs<0)
|
|
|
|
xs=xs1=0;
|
|
|
|
|
|
|
|
unsigned a = source(xs,ys);
|
|
|
|
unsigned b = source(xs1,ys);
|
|
|
|
unsigned c = source(xs,ys1);
|
|
|
|
unsigned d = source(xs1,ys1);
|
|
|
|
unsigned out=0;
|
|
|
|
unsigned t = 0;
|
|
|
|
|
|
|
|
for(int i=0; i<4; i++){
|
|
|
|
unsigned p,r,s;
|
|
|
|
// X axis
|
|
|
|
p = a&0xff;
|
|
|
|
r = b&0xff;
|
|
|
|
if (p!=r)
|
|
|
|
r = (r*xprt+p*xprt1+tw2)/target_width;
|
|
|
|
p = c&0xff;
|
|
|
|
s = d&0xff;
|
|
|
|
if (p!=s)
|
|
|
|
s = (s*xprt+p*xprt1+tw2)/target_width;
|
|
|
|
// Y axis
|
|
|
|
if (r!=s)
|
|
|
|
r = (s*yprt+r*yprt1+th2)/target_height;
|
|
|
|
// channel up
|
|
|
|
out |= r << t;
|
|
|
|
t += 8;
|
|
|
|
a >>= 8;
|
|
|
|
b >>= 8;
|
|
|
|
c >>= 8;
|
|
|
|
d >>= 8;
|
|
|
|
}
|
|
|
|
target(x,y)=out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-05-12 18:43:23 +02:00
|
|
|
|
2011-01-27 04:47:54 +01:00
|
|
|
|
|
|
|
template <typename Image>
|
|
|
|
void scale_image_bilinear8 (Image& target,const Image& source, double x_off_f, double y_off_f)
|
|
|
|
{
|
|
|
|
|
|
|
|
int source_width=source.width();
|
|
|
|
int source_height=source.height();
|
|
|
|
|
|
|
|
int target_width=target.width();
|
|
|
|
int target_height=target.height();
|
|
|
|
|
|
|
|
if (source_width<1 || source_height<1 ||
|
|
|
|
target_width<1 || target_height<1) return;
|
|
|
|
int x=0,y=0,xs=0,ys=0;
|
|
|
|
int tw2 = target_width/2;
|
|
|
|
int th2 = target_height/2;
|
|
|
|
int offs_x = rint((source_width-target_width-x_off_f*2*source_width)/2);
|
|
|
|
int offs_y = rint((source_height-target_height-y_off_f*2*source_height)/2);
|
|
|
|
unsigned yprt, yprt1, xprt, xprt1;
|
|
|
|
|
|
|
|
//no scaling or subpixel offset
|
|
|
|
if (target_height == source_height && target_width == source_width && offs_x == 0 && offs_y == 0){
|
|
|
|
for (y=0;y<target_height;++y)
|
|
|
|
target.setRow(y,source.getRow(y),target_width);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (y=0;y<target_height;++y)
|
|
|
|
{
|
|
|
|
ys = (y*source_height+offs_y)/target_height;
|
|
|
|
int ys1 = ys+1;
|
|
|
|
if (ys1>=source_height)
|
|
|
|
ys1--;
|
|
|
|
if (ys<0)
|
|
|
|
ys=ys1=0;
|
|
|
|
if (source_height/2<target_height)
|
|
|
|
yprt = (y*source_height+offs_y)%target_height;
|
|
|
|
else
|
|
|
|
yprt = th2;
|
|
|
|
yprt1 = target_height-yprt;
|
|
|
|
for (x=0;x<target_width;++x)
|
|
|
|
{
|
|
|
|
xs = (x*source_width+offs_x)/target_width;
|
|
|
|
if (source_width/2<target_width)
|
|
|
|
xprt = (x*source_width+offs_x)%target_width;
|
|
|
|
else
|
|
|
|
xprt = tw2;
|
|
|
|
xprt1 = target_width-xprt;
|
|
|
|
int xs1 = xs+1;
|
|
|
|
if (xs1>=source_width)
|
|
|
|
xs1--;
|
|
|
|
if (xs<0)
|
|
|
|
xs=xs1=0;
|
|
|
|
|
|
|
|
unsigned a = source(xs,ys);
|
|
|
|
unsigned b = source(xs1,ys);
|
|
|
|
unsigned c = source(xs,ys1);
|
|
|
|
unsigned d = source(xs1,ys1);
|
|
|
|
unsigned p,r,s;
|
|
|
|
// X axis
|
|
|
|
p = a&0xff;
|
|
|
|
r = b&0xff;
|
|
|
|
if (p!=r)
|
|
|
|
r = (r*xprt+p*xprt1+tw2)/target_width;
|
|
|
|
p = c&0xff;
|
|
|
|
s = d&0xff;
|
|
|
|
if (p!=s)
|
|
|
|
s = (s*xprt+p*xprt1+tw2)/target_width;
|
|
|
|
// Y axis
|
|
|
|
if (r!=s)
|
|
|
|
r = (s*yprt+r*yprt1+th2)/target_height;
|
|
|
|
target(x,y)=(0xff<<24) | (r<<16) | (r<<8) | r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename Image>
|
2011-05-03 00:30:50 +02:00
|
|
|
void scale_image_agg (Image& target,const Image& source, scaling_method_e scaling_method, double scale_factor, double x_off_f, double y_off_f, double filter_radius, double ratio)
|
2011-01-27 04:47:54 +01:00
|
|
|
{
|
2011-07-15 05:59:44 +02:00
|
|
|
typedef agg::pixfmt_rgba32_plain pixfmt;
|
2011-01-27 04:47:54 +01:00
|
|
|
typedef agg::renderer_base<pixfmt> renderer_base;
|
|
|
|
|
|
|
|
// define some stuff we'll use soon
|
|
|
|
agg::rasterizer_scanline_aa<> ras;
|
|
|
|
agg::scanline_u8 sl;
|
|
|
|
agg::span_allocator<agg::rgba8> sa;
|
|
|
|
agg::image_filter_lut filter;
|
|
|
|
|
|
|
|
// initialize source AGG buffer
|
|
|
|
agg::rendering_buffer rbuf_src((unsigned char*)source.getBytes(), source.width(), source.height(), source.width() * 4);
|
|
|
|
pixfmt pixf_src(rbuf_src);
|
|
|
|
|
|
|
|
typedef agg::image_accessor_clone<pixfmt> img_src_type;
|
|
|
|
img_src_type img_src(pixf_src);
|
|
|
|
|
|
|
|
// initialise destination AGG buffer (with transparency)
|
|
|
|
agg::rendering_buffer rbuf_dst((unsigned char*)target.getBytes(), target.width(), target.height(), target.width() * 4);
|
|
|
|
pixfmt pixf_dst(rbuf_dst);
|
|
|
|
renderer_base rb_dst(pixf_dst);
|
|
|
|
rb_dst.clear(agg::rgba(0, 0, 0, 0));
|
|
|
|
|
|
|
|
// create a scaling matrix
|
|
|
|
agg::trans_affine img_mtx;
|
2011-05-03 00:30:50 +02:00
|
|
|
img_mtx /= agg::trans_affine_scaling(scale_factor * ratio, scale_factor * ratio);
|
2011-01-27 04:47:54 +01:00
|
|
|
|
|
|
|
// create a linear interpolator for our scaling matrix
|
|
|
|
typedef agg::span_interpolator_linear<> interpolator_type;
|
|
|
|
interpolator_type interpolator(img_mtx);
|
|
|
|
|
|
|
|
// draw an anticlockwise polygon to render our image into
|
|
|
|
double scaled_width = source.width() * scale_factor;
|
|
|
|
double scaled_height = source.height() * scale_factor;
|
|
|
|
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);
|
|
|
|
|
|
|
|
switch(scaling_method)
|
|
|
|
{
|
|
|
|
case SCALING_NEAR:
|
|
|
|
{
|
|
|
|
typedef agg::span_image_filter_rgba_nn<img_src_type, interpolator_type> span_gen_type;
|
|
|
|
span_gen_type sg(img_src, interpolator);
|
|
|
|
agg::render_scanlines_aa(ras, sl, rb_dst, sa, sg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
case SCALING_BILINEAR:
|
|
|
|
filter.calculate(agg::image_filter_bilinear(), true); break;
|
|
|
|
case SCALING_BICUBIC:
|
|
|
|
filter.calculate(agg::image_filter_bicubic(), true); break;
|
|
|
|
case SCALING_SPLINE16:
|
|
|
|
filter.calculate(agg::image_filter_spline16(), true); break;
|
|
|
|
case SCALING_SPLINE36:
|
|
|
|
filter.calculate(agg::image_filter_spline36(), true); break;
|
|
|
|
case SCALING_HANNING:
|
|
|
|
filter.calculate(agg::image_filter_hanning(), true); break;
|
|
|
|
case SCALING_HAMMING:
|
|
|
|
filter.calculate(agg::image_filter_hamming(), true); break;
|
|
|
|
case SCALING_HERMITE:
|
|
|
|
filter.calculate(agg::image_filter_hermite(), true); break;
|
|
|
|
case SCALING_KAISER:
|
|
|
|
filter.calculate(agg::image_filter_kaiser(), true); break;
|
|
|
|
case SCALING_QUADRIC:
|
|
|
|
filter.calculate(agg::image_filter_quadric(), true); break;
|
|
|
|
case SCALING_CATROM:
|
|
|
|
filter.calculate(agg::image_filter_catrom(), true); break;
|
|
|
|
case SCALING_GAUSSIAN:
|
|
|
|
filter.calculate(agg::image_filter_gaussian(), true); break;
|
|
|
|
case SCALING_BESSEL:
|
|
|
|
filter.calculate(agg::image_filter_bessel(), true); break;
|
|
|
|
case SCALING_MITCHELL:
|
|
|
|
filter.calculate(agg::image_filter_mitchell(), true); break;
|
|
|
|
case SCALING_SINC:
|
|
|
|
filter.calculate(agg::image_filter_sinc(filter_radius), true); break;
|
|
|
|
case SCALING_LANCZOS:
|
|
|
|
filter.calculate(agg::image_filter_lanczos(filter_radius), true); break;
|
|
|
|
case SCALING_BLACKMAN:
|
|
|
|
filter.calculate(agg::image_filter_blackman(filter_radius), true); break;
|
|
|
|
}
|
|
|
|
typedef agg::span_image_resample_rgba_affine<img_src_type> span_gen_type;
|
|
|
|
span_gen_type sg(img_src, interpolator, filter);
|
|
|
|
agg::render_scanlines_aa(ras, sl, rb_dst, sa, sg);
|
|
|
|
}
|
|
|
|
|
2011-05-03 00:30:50 +02:00
|
|
|
template void scale_image_agg<image_data_32> (image_data_32& target,const image_data_32& source, scaling_method_e scaling_method, double scale_factor, double x_off_f, double y_off_f, double filter_radius, double ratio);
|
2011-01-27 04:47:54 +01:00
|
|
|
|
2011-05-12 18:43:23 +02:00
|
|
|
template void scale_image_bilinear_old<image_data_32> (image_data_32& target,const image_data_32& source, double x_off_f, double y_off_f);
|
|
|
|
|
2011-01-27 04:47:54 +01:00
|
|
|
template void scale_image_bilinear8<image_data_32> (image_data_32& target,const image_data_32& source, double x_off_f, double y_off_f);
|
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|