2006-03-31 12:32:02 +02:00
|
|
|
/*****************************************************************************
|
2012-02-02 02:53:35 +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
|
|
|
*
|
2011-10-23 15:04:25 +02:00
|
|
|
* Copyright (C) 2011 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
|
|
|
|
2013-01-29 08:17:37 +01:00
|
|
|
#if defined(HAVE_PNG)
|
2009-02-15 12:56:54 +01:00
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#include <png.h>
|
|
|
|
}
|
2013-01-29 08:17:37 +01:00
|
|
|
#endif
|
2009-02-15 12:56:54 +01:00
|
|
|
|
2006-10-04 13:22:18 +02:00
|
|
|
// mapnik
|
2013-01-29 08:17:37 +01:00
|
|
|
#if defined(HAVE_PNG)
|
2008-01-23 12:34:59 +01:00
|
|
|
#include <mapnik/png_io.hpp>
|
2013-01-29 08:17:37 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(HAVE_TIFF)
|
2011-11-28 16:59:19 +01:00
|
|
|
#include <mapnik/tiff_io.hpp>
|
2013-01-29 08:17:37 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(HAVE_JPEG)
|
|
|
|
#include <mapnik/jpeg_io.hpp>
|
|
|
|
#endif
|
|
|
|
|
2013-07-19 07:09:17 +02:00
|
|
|
#if defined(HAVE_WEBP)
|
|
|
|
#include <mapnik/webp_io.hpp>
|
|
|
|
#endif
|
|
|
|
|
2013-01-29 08:17:37 +01:00
|
|
|
#include <mapnik/image_util.hpp>
|
2012-11-01 18:02:08 +01:00
|
|
|
#include <mapnik/image_data.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>
|
2012-02-21 19:59:11 +01:00
|
|
|
#include <mapnik/util/conversions.hpp>
|
2010-06-03 21:50:27 +02:00
|
|
|
|
2010-01-11 19:55:30 +01:00
|
|
|
#ifdef HAVE_CAIRO
|
|
|
|
#include <mapnik/cairo_renderer.hpp>
|
2013-01-09 18:00:30 +01:00
|
|
|
#include <cairo.h>
|
|
|
|
#ifdef CAIRO_HAS_PDF_SURFACE
|
|
|
|
#include <cairo-pdf.h>
|
|
|
|
#endif // CAIRO_HAS_PDF_SURFACE
|
|
|
|
#ifdef CAIRO_HAS_PS_SURFACE
|
|
|
|
#include <cairo-ps.h>
|
|
|
|
#endif // CAIRO_HAS_PS_SURFACE
|
|
|
|
#ifdef CAIRO_HAS_SVG_SURFACE
|
|
|
|
#include <cairo-svg.h>
|
|
|
|
#endif // CAIRO_HAS_SVG_SURFACE
|
2010-01-11 19:55:30 +01:00
|
|
|
#endif
|
|
|
|
|
2012-04-08 02:45:01 +02:00
|
|
|
// boost
|
2013-09-20 05:19:01 +02:00
|
|
|
|
2010-03-12 19:23:06 +01:00
|
|
|
#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>
|
2013-01-04 04:27:53 +01:00
|
|
|
#include <algorithm>
|
2007-10-08 19:42:41 +02:00
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
namespace mapnik
|
2012-02-02 02:53:35 +01:00
|
|
|
{
|
2011-08-31 04:28:14 +02:00
|
|
|
|
2012-05-09 13:39:23 +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,
|
2011-09-07 17:01:25 +02:00
|
|
|
rgba_palette const& 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
|
|
|
|
2011-09-07 22:01:01 +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);
|
|
|
|
save_to_stream(image, ss, type);
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
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,
|
2011-09-07 17:01:25 +02:00
|
|
|
rgba_palette const& 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 );
|
|
|
|
}
|
|
|
|
|
2013-01-29 08:17:37 +01:00
|
|
|
#if defined(HAVE_PNG)
|
2013-10-04 08:40:19 +02:00
|
|
|
|
2011-09-07 02:45:18 +02:00
|
|
|
void handle_png_options(std::string const& type,
|
2013-10-04 08:40:19 +02:00
|
|
|
png_options & opts)
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
if (type == "png" || type == "png8" || type == "png256")
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
// stick with defaults
|
2011-09-07 02:45:18 +02:00
|
|
|
return;
|
|
|
|
}
|
2013-10-04 08:40:19 +02:00
|
|
|
else if (type == "png24" || type == "png32")
|
|
|
|
{
|
|
|
|
opts.paletted = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
boost::char_separator<char> sep(":");
|
|
|
|
boost::tokenizer< boost::char_separator<char> > tokens(type, sep);
|
|
|
|
bool set_colors = false;
|
|
|
|
bool set_gamma = false;
|
2013-10-06 00:37:29 +02:00
|
|
|
for (std::string const& t : tokens)
|
2013-10-04 08:40:19 +02:00
|
|
|
{
|
2013-10-04 10:03:20 +02:00
|
|
|
if (t == "png" || t == "png8")
|
|
|
|
{
|
|
|
|
opts.paletted = true;
|
|
|
|
}
|
|
|
|
else if (t == "png24" || t == "png32")
|
2013-10-04 08:40:19 +02:00
|
|
|
{
|
|
|
|
opts.paletted = false;
|
|
|
|
}
|
|
|
|
else if (t == "m=o")
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
opts.use_hextree = false;
|
|
|
|
}
|
2013-10-04 10:03:20 +02:00
|
|
|
else if (t == "m=h")
|
|
|
|
{
|
|
|
|
opts.use_hextree = true;
|
|
|
|
}
|
2013-10-04 08:40:19 +02:00
|
|
|
else if (t == "e=miniz")
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
opts.use_miniz = true;
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "c="))
|
|
|
|
{
|
|
|
|
set_colors = true;
|
|
|
|
if (!mapnik::util::string2int(t.substr(2),opts.colors) || opts.colors < 1 || opts.colors > 256)
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
throw ImageWriterException("invalid color parameter: " + t.substr(2));
|
2011-09-07 02:45:18 +02:00
|
|
|
}
|
2013-10-04 08:40:19 +02:00
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "t="))
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2int(t.substr(2),opts.trans_mode) || opts.trans_mode < 0 || opts.trans_mode > 2)
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
throw ImageWriterException("invalid trans_mode parameter: " + t.substr(2));
|
2011-09-07 02:45:18 +02:00
|
|
|
}
|
2013-10-04 08:40:19 +02:00
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "g="))
|
|
|
|
{
|
|
|
|
set_gamma = true;
|
|
|
|
if (!mapnik::util::string2double(t.substr(2),opts.gamma) || opts.gamma < 0)
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
throw ImageWriterException("invalid gamma parameter: " + t.substr(2));
|
2011-09-07 02:45:18 +02:00
|
|
|
}
|
2013-10-04 08:40:19 +02:00
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "z="))
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
#define Z_NO_COMPRESSION 0
|
|
|
|
#define Z_BEST_SPEED 1
|
|
|
|
#define Z_BEST_COMPRESSION 9
|
|
|
|
#define Z_DEFAULT_COMPRESSION (-1)
|
|
|
|
*/
|
|
|
|
if (!mapnik::util::string2int(t.substr(2),opts.compression)
|
|
|
|
|| opts.compression < Z_DEFAULT_COMPRESSION
|
|
|
|
|| opts.compression > 10) // use 10 here rather than Z_BEST_COMPRESSION (9) to allow for MZ_UBER_COMPRESSION
|
2012-11-04 13:10:05 +01:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
throw ImageWriterException("invalid compression parameter: " + t.substr(2) + " (only -1 through 10 are valid)");
|
2012-11-04 13:10:05 +01:00
|
|
|
}
|
2013-10-04 08:40:19 +02:00
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "s="))
|
|
|
|
{
|
|
|
|
std::string s = t.substr(2);
|
|
|
|
if (s == "default")
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
opts.strategy = Z_DEFAULT_STRATEGY;
|
2011-09-07 02:45:18 +02:00
|
|
|
}
|
2013-10-04 08:40:19 +02:00
|
|
|
else if (s == "filtered")
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
opts.strategy = Z_FILTERED;
|
2011-09-07 02:45:18 +02:00
|
|
|
}
|
2013-10-04 08:40:19 +02:00
|
|
|
else if (s == "huff")
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
opts.strategy = Z_HUFFMAN_ONLY;
|
2012-02-09 00:45:08 +01:00
|
|
|
}
|
2013-10-04 08:40:19 +02:00
|
|
|
else if (s == "rle")
|
2012-02-09 00:45:08 +01:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
opts.strategy = Z_RLE;
|
2011-09-07 02:45:18 +02:00
|
|
|
}
|
2013-10-04 08:40:19 +02:00
|
|
|
else if (s == "fixed")
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
opts.strategy = Z_FIXED;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid compression strategy parameter: " + s);
|
2011-09-07 02:45:18 +02:00
|
|
|
}
|
|
|
|
}
|
2013-10-04 10:03:20 +02:00
|
|
|
else
|
2012-11-04 13:10:05 +01:00
|
|
|
{
|
2013-10-04 10:03:20 +02:00
|
|
|
throw ImageWriterException("unhandled png option: " + t);
|
2012-11-04 13:10:05 +01:00
|
|
|
}
|
2011-09-07 02:45:18 +02:00
|
|
|
}
|
2013-10-04 08:40:19 +02:00
|
|
|
// validation
|
|
|
|
if (!opts.paletted && set_colors)
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid color parameter: unavailable for true color (non-paletted) images");
|
|
|
|
}
|
|
|
|
if (!opts.paletted && set_gamma)
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid gamma parameter: unavailable for true color (non-paletted) images");
|
|
|
|
}
|
|
|
|
if ((opts.use_miniz == false) && opts.compression > Z_BEST_COMPRESSION)
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid compression value: (only -1 through 9 are valid)");
|
2011-09-07 02:45:18 +02:00
|
|
|
}
|
|
|
|
}
|
2013-01-29 08:17:37 +01:00
|
|
|
#endif
|
2011-09-07 02:45:18 +02:00
|
|
|
|
2013-07-19 07:09:17 +02:00
|
|
|
#if defined(HAVE_WEBP)
|
|
|
|
void handle_webp_options(std::string const& type,
|
2013-10-04 09:24:30 +02:00
|
|
|
WebPConfig & config,
|
|
|
|
bool & alpha)
|
2013-07-19 07:09:17 +02:00
|
|
|
{
|
|
|
|
if (type == "webp")
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (type.length() > 4){
|
|
|
|
boost::char_separator<char> sep(":");
|
|
|
|
boost::tokenizer< boost::char_separator<char> > tokens(type, sep);
|
2013-09-20 05:19:01 +02:00
|
|
|
for (auto const& t : tokens)
|
2013-07-19 07:09:17 +02:00
|
|
|
{
|
2013-10-04 10:03:20 +02:00
|
|
|
if (t == "webp")
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "quality="))
|
2013-07-19 07:09:17 +02:00
|
|
|
{
|
|
|
|
std::string val = t.substr(8);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
2013-10-04 09:24:30 +02:00
|
|
|
double quality = 90;
|
2013-07-19 07:09:17 +02:00
|
|
|
if (!mapnik::util::string2double(val,quality) || quality < 0.0 || quality > 100.0)
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp quality: '" + val + "'");
|
|
|
|
}
|
2013-10-04 09:24:30 +02:00
|
|
|
config.quality = static_cast<float>(quality);
|
2013-07-19 07:09:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "method="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(7);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
2013-10-04 09:24:30 +02:00
|
|
|
if (!mapnik::util::string2int(val,config.method) || config.method < 0 || config.method > 6)
|
2013-07-19 07:09:17 +02:00
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp method: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "lossless="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(9);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
2013-10-04 22:34:07 +02:00
|
|
|
#if (WEBP_ENCODER_ABI_VERSION >> 8) >= 1 // >= v0.1.99 / 0x0100
|
2013-10-04 09:24:30 +02:00
|
|
|
if (!mapnik::util::string2int(val,config.lossless) || config.lossless < 0 || config.lossless > 1)
|
2013-07-19 07:09:17 +02:00
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp lossless: '" + val + "'");
|
|
|
|
}
|
2013-10-04 22:34:07 +02:00
|
|
|
#else
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma NOTE(compiling against webp that does not support the lossless flag)
|
|
|
|
#else
|
|
|
|
#warning "compiling against webp that does not support the lossless flag"
|
|
|
|
#endif
|
|
|
|
throw ImageWriterException("your webp version does not support the lossless option");
|
|
|
|
#endif
|
2013-07-19 07:09:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "image_hint="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(11);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
2013-10-04 22:34:07 +02:00
|
|
|
#if (WEBP_ENCODER_ABI_VERSION >> 8) >= 1 // >= v0.1.99 / 0x0100
|
2013-10-04 09:24:30 +02:00
|
|
|
int image_hint = 0;
|
2013-07-19 07:09:17 +02:00
|
|
|
if (!mapnik::util::string2int(val,image_hint) || image_hint < 0 || image_hint > 3)
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp image_hint: '" + val + "'");
|
|
|
|
}
|
2013-10-04 09:24:30 +02:00
|
|
|
config.image_hint = static_cast<WebPImageHint>(image_hint);
|
2013-10-04 22:34:07 +02:00
|
|
|
#else
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma NOTE(compiling against webp that does not support the image_hint flag)
|
|
|
|
#else
|
|
|
|
#warning "compiling against webp that does not support the image_hint flag"
|
|
|
|
#endif
|
|
|
|
throw ImageWriterException("your webp version does not support the image_hint option");
|
|
|
|
#endif
|
2013-07-19 07:09:17 +02:00
|
|
|
}
|
|
|
|
}
|
2013-08-15 20:47:28 +02:00
|
|
|
else if (boost::algorithm::starts_with(t, "alpha="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(6);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2bool(val,alpha))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp alpha: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-04 10:03:20 +02:00
|
|
|
else if (boost::algorithm::starts_with(t, "target_size="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(12);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2int(val,config.target_size))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp target_size: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "target_psnr="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(12);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
double psnr = 0;
|
|
|
|
if (!mapnik::util::string2double(val,psnr))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp target_psnr: '" + val + "'");
|
|
|
|
}
|
|
|
|
config.target_PSNR = psnr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "segments="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(9);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2int(val,config.segments))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp segments: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "sns_strength="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(13);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2int(val,config.sns_strength))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp sns_strength: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "filter_strength="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(16);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2int(val,config.filter_strength))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp filter_strength: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "filter_sharpness="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(17);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2int(val,config.filter_sharpness))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp filter_sharpness: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "filter_type="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(12);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2int(val,config.filter_type))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp filter_type: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "autofilter="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(11);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2int(val,config.autofilter))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp autofilter: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "alpha_compression="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(18);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2int(val,config.alpha_compression))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp alpha_compression: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "alpha_filtering="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(16);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
2013-10-04 22:34:07 +02:00
|
|
|
#if (WEBP_ENCODER_ABI_VERSION >> 8) >= 1 // >= v0.1.99 / 0x0100
|
2013-10-04 10:03:20 +02:00
|
|
|
if (!mapnik::util::string2int(val,config.alpha_filtering))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp alpha_filtering: '" + val + "'");
|
|
|
|
}
|
2013-10-04 22:34:07 +02:00
|
|
|
#else
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma NOTE(compiling against webp that does not support the alpha_filtering flag)
|
|
|
|
#else
|
|
|
|
#warning "compiling against webp that does not support the alpha_filtering flag"
|
|
|
|
#endif
|
|
|
|
throw ImageWriterException("your webp version does not support the alpha_filtering option");
|
|
|
|
#endif
|
2013-10-04 10:03:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "alpha_quality="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(14);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
2013-10-04 22:34:07 +02:00
|
|
|
#if (WEBP_ENCODER_ABI_VERSION >> 8) >= 1 // >= v0.1.99 / 0x0100
|
2013-10-04 10:03:20 +02:00
|
|
|
if (!mapnik::util::string2int(val,config.alpha_quality))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp alpha_quality: '" + val + "'");
|
|
|
|
}
|
2013-10-04 22:34:07 +02:00
|
|
|
#else
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma NOTE(compiling against webp that does not support the alpha_quality flag)
|
|
|
|
#else
|
|
|
|
#warning "compiling against webp that does not support the alpha_quality flag"
|
|
|
|
#endif
|
|
|
|
throw ImageWriterException("your webp version does not support the alpha_quality option");
|
|
|
|
#endif
|
2013-10-04 10:03:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "pass="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(5);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2int(val,config.pass))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp pass: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "preprocessing="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(14);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2int(val,config.preprocessing))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp preprocessing: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "partitions="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(11);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2int(val,config.partitions))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp partitions: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "partition_limit="))
|
|
|
|
{
|
|
|
|
std::string val = t.substr(16);
|
|
|
|
if (!val.empty())
|
|
|
|
{
|
|
|
|
if (!mapnik::util::string2int(val,config.partition_limit))
|
|
|
|
{
|
|
|
|
throw ImageWriterException("invalid webp partition_limit: '" + val + "'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw ImageWriterException("unhandled webp option: " + t);
|
|
|
|
}
|
2013-07-19 07:09:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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,
|
2011-09-07 17:01:25 +02:00
|
|
|
rgba_palette const& palette)
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
2012-02-10 21:14:53 +01:00
|
|
|
if (stream && image.width() > 0 && image.height() > 0)
|
2010-03-12 19:23:06 +01:00
|
|
|
{
|
2013-01-04 04:27:53 +01:00
|
|
|
std::string t = type;
|
|
|
|
std::transform(t.begin(), t.end(), t.begin(), ::tolower);
|
2012-02-10 20:20:00 +01:00
|
|
|
if (t == "png" || boost::algorithm::starts_with(t, "png"))
|
2009-07-14 00:36:16 +02:00
|
|
|
{
|
2013-01-29 08:17:37 +01:00
|
|
|
#if defined(HAVE_PNG)
|
2011-09-07 17:01:25 +02:00
|
|
|
if (palette.valid())
|
2012-11-04 13:10:05 +01:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
png_options opts;
|
|
|
|
handle_png_options(t,opts);
|
|
|
|
save_as_png8_pal(stream, image, palette, opts);
|
2012-11-04 13:10:05 +01:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
else
|
2012-11-04 13:10:05 +01:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
save_to_stream(image,stream,type);
|
2012-11-04 13:10:05 +01:00
|
|
|
}
|
2013-01-29 08:17:37 +01:00
|
|
|
#else
|
|
|
|
throw ImageWriterException("png output is not enabled in your build of Mapnik");
|
|
|
|
#endif
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
2012-02-10 20:20:00 +01:00
|
|
|
else if (boost::algorithm::starts_with(t, "tif"))
|
2011-11-28 17:18:30 +01:00
|
|
|
{
|
|
|
|
throw ImageWriterException("palettes are not currently supported when writing to tiff format (yet)");
|
|
|
|
}
|
2012-02-10 20:20:00 +01:00
|
|
|
else if (boost::algorithm::starts_with(t, "jpeg"))
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
|
|
|
throw ImageWriterException("palettes are not currently supported when writing to jpeg format");
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
2012-02-02 02:53:35 +01:00
|
|
|
}
|
2011-09-07 02:45:18 +02:00
|
|
|
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)
|
|
|
|
{
|
2012-02-10 21:14:53 +01:00
|
|
|
if (stream && image.width() > 0 && image.height() > 0)
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
2013-01-04 04:27:53 +01:00
|
|
|
std::string t = type;
|
|
|
|
std::transform(t.begin(), t.end(), t.begin(), ::tolower);
|
2012-02-10 20:20:00 +01:00
|
|
|
if (t == "png" || boost::algorithm::starts_with(t, "png"))
|
2011-09-07 02:45:18 +02:00
|
|
|
{
|
2013-01-29 08:17:37 +01:00
|
|
|
#if defined(HAVE_PNG)
|
2013-10-04 08:40:19 +02:00
|
|
|
png_options opts;
|
|
|
|
handle_png_options(t,opts);
|
|
|
|
if (opts.paletted)
|
2012-11-04 13:10:05 +01:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
if (opts.use_hextree)
|
|
|
|
{
|
|
|
|
save_as_png8_hex(stream, image, opts);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
save_as_png8_oct(stream, image, opts);
|
|
|
|
}
|
2012-11-04 13:10:05 +01:00
|
|
|
}
|
2011-09-07 02:45:18 +02:00
|
|
|
else
|
2012-11-04 13:10:05 +01:00
|
|
|
{
|
2013-10-04 08:40:19 +02:00
|
|
|
save_as_png(stream, image, opts);
|
2012-11-04 13:10:05 +01:00
|
|
|
}
|
2013-01-29 08:17:37 +01:00
|
|
|
#else
|
|
|
|
throw ImageWriterException("png output is not enabled in your build of Mapnik");
|
|
|
|
#endif
|
2011-09-07 02:45:18 +02:00
|
|
|
}
|
2012-02-10 20:20:00 +01:00
|
|
|
else if (boost::algorithm::starts_with(t, "tif"))
|
2011-11-28 16:59:19 +01:00
|
|
|
{
|
2013-01-29 09:30:01 +01:00
|
|
|
#if defined(HAVE_TIFF)
|
2011-11-28 16:59:19 +01:00
|
|
|
save_as_tiff(stream, image);
|
2013-01-29 08:17:37 +01:00
|
|
|
#else
|
|
|
|
throw ImageWriterException("tiff output is not enabled in your build of Mapnik");
|
|
|
|
#endif
|
2011-11-28 16:59:19 +01:00
|
|
|
}
|
2012-02-10 20:20:00 +01:00
|
|
|
else if (boost::algorithm::starts_with(t, "jpeg"))
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
2013-01-29 08:17:37 +01:00
|
|
|
#if defined(HAVE_JPEG)
|
2010-06-02 13:03:30 +02:00
|
|
|
int quality = 85;
|
2013-09-16 06:12:12 +02:00
|
|
|
std::string val = t.substr(4);
|
2012-02-21 19:59:11 +01:00
|
|
|
if (!val.empty())
|
2009-07-14 00:36:16 +02:00
|
|
|
{
|
2012-03-23 12:01:18 +01:00
|
|
|
if (!mapnik::util::string2int(val,quality) || quality < 0 || quality > 100)
|
2009-07-14 00:36:16 +02:00
|
|
|
{
|
2012-02-21 19:59:11 +01:00
|
|
|
throw ImageWriterException("invalid jpeg quality: '" + val + "'");
|
2009-07-14 00:36:16 +02:00
|
|
|
}
|
|
|
|
}
|
2012-02-09 00:45:08 +01:00
|
|
|
save_as_jpeg(stream, quality, image);
|
2013-01-29 08:17:37 +01:00
|
|
|
#else
|
|
|
|
throw ImageWriterException("jpeg output is not enabled in your build of Mapnik");
|
2013-07-19 07:09:17 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "webp"))
|
|
|
|
{
|
|
|
|
#if defined(HAVE_WEBP)
|
2013-10-04 09:24:30 +02:00
|
|
|
WebPConfig config;
|
2013-10-04 21:59:47 +02:00
|
|
|
// Default values set here will be lossless=0 and quality=75 (as least as of webp v0.3.1)
|
|
|
|
if (!WebPConfigInit(&config))
|
2013-10-04 09:24:30 +02:00
|
|
|
{
|
|
|
|
throw std::runtime_error("version mismatch");
|
|
|
|
}
|
2013-10-04 21:59:47 +02:00
|
|
|
// see for more details: https://github.com/mapnik/mapnik/wiki/Image-IO#webp-output-options
|
2013-08-15 20:47:28 +02:00
|
|
|
bool alpha = true;
|
2013-10-04 09:24:30 +02:00
|
|
|
handle_webp_options(t,config,alpha);
|
|
|
|
save_as_webp(stream,image,config,alpha);
|
2013-07-19 07:09:17 +02:00
|
|
|
#else
|
|
|
|
throw ImageWriterException("webp output is not enabled in your build of Mapnik");
|
2010-06-03 21:50:27 +02:00
|
|
|
#endif
|
2013-01-29 08:17:37 +01:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
2012-02-02 02:53:35 +01:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
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);
|
|
|
|
}
|
2013-02-09 02:14:39 +01:00
|
|
|
else throw ImageWriterException("Could not write file to " + filename );
|
2011-09-07 02:45:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2011-09-07 17:01:25 +02:00
|
|
|
void save_to_file(T const& image, std::string const& filename, rgba_palette const& 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
|
|
|
}
|
2013-02-09 02:14:39 +01:00
|
|
|
else throw ImageWriterException("Could not write file to " + filename );
|
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
|
2013-06-28 02:07:25 +02:00
|
|
|
void save_to_cairo_file(mapnik::Map const& map, std::string const& filename, double scale_factor, double scale_denominator)
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
|
|
|
boost::optional<std::string> type = type_from_filename(filename);
|
|
|
|
if (type)
|
2010-01-11 19:55:30 +01:00
|
|
|
{
|
2013-06-28 02:07:25 +02:00
|
|
|
save_to_cairo_file(map,filename,*type,scale_factor,scale_denominator);
|
2010-01-11 19:55:30 +01:00
|
|
|
}
|
2013-02-09 02:14:39 +01:00
|
|
|
else throw ImageWriterException("Could not write file to " + filename );
|
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,
|
2012-07-05 23:54:58 +02:00
|
|
|
std::string const& type,
|
2013-06-28 02:07:25 +02:00
|
|
|
double scale_factor,
|
|
|
|
double scale_denominator)
|
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)
|
2010-01-11 19:55:30 +01:00
|
|
|
{
|
2013-01-09 18:00:30 +01:00
|
|
|
cairo_surface_ptr 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")
|
2012-03-21 23:34:01 +01:00
|
|
|
{
|
2013-01-09 18:00:30 +01:00
|
|
|
#ifdef CAIRO_HAS_PDF_SURFACE
|
|
|
|
surface = cairo_surface_ptr(cairo_pdf_surface_create(filename.c_str(),width,height),cairo_surface_closer());
|
2012-03-22 01:45:19 +01:00
|
|
|
#else
|
2012-03-21 23:34:01 +01:00
|
|
|
throw ImageWriterException("PDFSurface not supported in the cairo backend");
|
|
|
|
#endif
|
|
|
|
}
|
2013-01-09 18:00:30 +01:00
|
|
|
#ifdef CAIRO_HAS_SVG_SURFACE
|
2010-06-02 13:03:30 +02:00
|
|
|
else if (type == "svg")
|
2012-03-21 23:34:01 +01:00
|
|
|
{
|
2013-01-09 18:00:30 +01:00
|
|
|
surface = cairo_surface_ptr(cairo_svg_surface_create(filename.c_str(),width,height),cairo_surface_closer());
|
2012-03-21 23:34:01 +01:00
|
|
|
}
|
|
|
|
#endif
|
2013-01-09 18:00:30 +01:00
|
|
|
#ifdef CAIRO_HAS_PS_SURFACE
|
2010-06-02 13:03:30 +02:00
|
|
|
else if (type == "ps")
|
2012-03-21 23:34:01 +01:00
|
|
|
{
|
2013-01-09 18:00:30 +01:00
|
|
|
surface = cairo_surface_ptr(cairo_ps_surface_create(filename.c_str(),width,height),cairo_surface_closer());
|
2012-03-21 23:34:01 +01:00
|
|
|
}
|
|
|
|
#endif
|
2013-01-09 18:00:30 +01:00
|
|
|
#ifdef CAIRO_HAS_IMAGE_SURFACE
|
2010-06-02 13:03:30 +02:00
|
|
|
else if (type == "ARGB32")
|
2012-03-21 23:34:01 +01:00
|
|
|
{
|
2013-01-09 18:00:30 +01:00
|
|
|
surface = cairo_surface_ptr(cairo_image_surface_create(CAIRO_FORMAT_ARGB32,width,height),cairo_surface_closer());
|
2012-03-21 23:34:01 +01:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
else if (type == "RGB24")
|
2012-03-21 23:34:01 +01:00
|
|
|
{
|
2013-01-09 18:00:30 +01:00
|
|
|
surface = cairo_surface_ptr(cairo_image_surface_create(CAIRO_FORMAT_RGB24,width,height),cairo_surface_closer());
|
2012-03-21 23:34:01 +01:00
|
|
|
}
|
|
|
|
#endif
|
2012-02-02 02:53:35 +01:00
|
|
|
else
|
2012-03-21 23:34:01 +01:00
|
|
|
{
|
2012-02-02 02:53:35 +01:00
|
|
|
throw ImageWriterException("unknown file type: " + type);
|
2012-03-21 23:34:01 +01:00
|
|
|
}
|
|
|
|
|
2013-01-09 18:00:30 +01:00
|
|
|
//cairo_t * ctx = cairo_create(surface);
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
// TODO - expose as user option
|
|
|
|
/*
|
2012-02-02 02:53:35 +01:00
|
|
|
if (type == "ARGB32" || type == "RGB24")
|
|
|
|
{
|
|
|
|
context->set_antialias(Cairo::ANTIALIAS_NONE);
|
2010-01-11 19:55:30 +01:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
*/
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2013-01-09 18:00:30 +01:00
|
|
|
mapnik::cairo_renderer<cairo_ptr> ren(map, create_context(surface), scale_factor);
|
2013-06-28 02:07:25 +02:00
|
|
|
ren.apply(scale_denominator);
|
2012-02-02 02:53:35 +01:00
|
|
|
|
|
|
|
if (type == "ARGB32" || type == "RGB24")
|
|
|
|
{
|
2013-01-09 18:00:30 +01:00
|
|
|
cairo_surface_write_to_png(&*surface, filename.c_str());
|
2010-01-11 19:55:30 +01:00
|
|
|
}
|
2013-01-09 18:00:30 +01:00
|
|
|
cairo_surface_finish(&*surface);
|
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&,
|
2011-09-07 17:01:25 +02:00
|
|
|
rgba_palette const& 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&,
|
2011-09-07 17:01:25 +02:00
|
|
|
rgba_palette const& palette);
|
2007-12-06 13:14:29 +01:00
|
|
|
|
2011-09-07 22:01:01 +02:00
|
|
|
template std::string save_to_string<image_data_32>(image_data_32 const&,
|
|
|
|
std::string const&);
|
|
|
|
|
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&,
|
2011-09-07 17:01:25 +02:00
|
|
|
rgba_palette const& 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&,
|
2011-09-07 17:01:25 +02:00
|
|
|
rgba_palette const& 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&);
|
2012-02-02 02:53:35 +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&,
|
2011-09-07 17:01:25 +02:00
|
|
|
rgba_palette const& palette);
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2011-09-07 22:01:01 +02:00
|
|
|
template std::string save_to_string<image_view<image_data_32> > (image_view<image_data_32> const&,
|
|
|
|
std::string const&);
|
2012-02-02 02:53:35 +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&,
|
2011-09-07 17:01:25 +02:00
|
|
|
rgba_palette const& palette);
|
2009-01-19 23:51:55 +01:00
|
|
|
|
2012-05-09 13:39:23 +02:00
|
|
|
void save_to_file(image_32 const& image,std::string const& file)
|
|
|
|
{
|
|
|
|
save_to_file<image_data_32>(image.data(), file);
|
|
|
|
}
|
|
|
|
|
|
|
|
void save_to_file (image_32 const& image,
|
|
|
|
std::string const& file,
|
|
|
|
std::string const& type)
|
|
|
|
{
|
|
|
|
save_to_file<image_data_32>(image.data(), file, type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void save_to_file (image_32 const& image,
|
|
|
|
std::string const& file,
|
|
|
|
std::string const& type,
|
|
|
|
rgba_palette const& palette)
|
|
|
|
{
|
|
|
|
save_to_file<image_data_32>(image.data(), file, type, palette);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string save_to_string(image_32 const& image,
|
|
|
|
std::string const& type)
|
|
|
|
{
|
|
|
|
return save_to_string<image_data_32>(image.data(), type);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string save_to_string(image_32 const& image,
|
|
|
|
std::string const& type,
|
|
|
|
rgba_palette const& palette)
|
|
|
|
{
|
|
|
|
return save_to_string<image_data_32>(image.data(), type, palette);
|
|
|
|
}
|
|
|
|
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|