2006-03-31 10:32:02 +00:00
|
|
|
/*****************************************************************************
|
2012-02-02 01:53:35 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
2005-06-14 15:06:59 +00:00
|
|
|
*
|
2014-11-20 14:25:50 +00:00
|
|
|
* Copyright (C) 2014 Artem Pavlenko
|
2005-06-14 15:06:59 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00: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 15:06:59 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2006-03-31 10:32:02 +00: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 15:06:59 +00:00
|
|
|
*
|
2006-03-31 10:32:02 +00:00
|
|
|
*****************************************************************************/
|
2005-06-14 15:06:59 +00:00
|
|
|
|
2006-10-04 11:22:18 +00:00
|
|
|
// mapnik
|
2013-01-29 07:17:37 +00:00
|
|
|
#include <mapnik/image_util.hpp>
|
2015-01-08 21:55:51 +00:00
|
|
|
#include <mapnik/image_util_jpeg.hpp>
|
2015-01-07 20:44:31 +00:00
|
|
|
#include <mapnik/image_util_png.hpp>
|
2015-01-08 21:55:51 +00:00
|
|
|
#include <mapnik/image_util_tiff.hpp>
|
|
|
|
#include <mapnik/image_util_webp.hpp>
|
2012-11-01 17:02:08 +00:00
|
|
|
#include <mapnik/image_data.hpp>
|
2015-01-08 21:55:51 +00:00
|
|
|
#include <mapnik/image_data_any.hpp>
|
2006-10-04 11:22:18 +00: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 11:02:59 +00:00
|
|
|
#include <mapnik/image_view.hpp>
|
2011-08-31 02:28:14 +00:00
|
|
|
#include <mapnik/palette.hpp>
|
2010-06-18 15:38:29 +00:00
|
|
|
#include <mapnik/map.hpp>
|
2012-02-21 18:59:11 +00:00
|
|
|
#include <mapnik/util/conversions.hpp>
|
2015-01-07 20:44:31 +00:00
|
|
|
#include <mapnik/util/variant.hpp>
|
2010-06-03 19:50:27 +00:00
|
|
|
|
2010-01-11 18:55:30 +00:00
|
|
|
#ifdef HAVE_CAIRO
|
2014-06-06 12:38:00 +00:00
|
|
|
#include <mapnik/cairo/cairo_renderer.hpp>
|
2013-01-09 17:00:30 +00:00
|
|
|
#include <cairo.h>
|
|
|
|
#ifdef CAIRO_HAS_PDF_SURFACE
|
|
|
|
#include <cairo-pdf.h>
|
2014-08-09 20:41:34 +00:00
|
|
|
#endif
|
2013-01-09 17:00:30 +00:00
|
|
|
#ifdef CAIRO_HAS_PS_SURFACE
|
|
|
|
#include <cairo-ps.h>
|
2014-08-09 20:41:34 +00:00
|
|
|
#endif
|
2013-01-09 17:00:30 +00:00
|
|
|
#ifdef CAIRO_HAS_SVG_SURFACE
|
|
|
|
#include <cairo-svg.h>
|
2014-08-09 20:41:34 +00:00
|
|
|
#endif
|
2010-01-11 18:55:30 +00:00
|
|
|
#endif
|
|
|
|
|
2012-04-08 00:45:01 +00:00
|
|
|
// boost
|
2010-03-12 18:23:06 +00:00
|
|
|
#include <boost/tokenizer.hpp>
|
|
|
|
|
2007-10-08 17:42:41 +00:00
|
|
|
// stl
|
|
|
|
#include <string>
|
2007-10-17 14:47:56 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
2009-04-07 15:48:51 +00:00
|
|
|
#include <sstream>
|
2013-01-04 03:27:53 +00:00
|
|
|
#include <algorithm>
|
2007-10-08 17:42:41 +00:00
|
|
|
|
2005-06-14 15:06:59 +00:00
|
|
|
namespace mapnik
|
2012-02-02 01:53:35 +00:00
|
|
|
{
|
2011-08-31 02:28:14 +00:00
|
|
|
|
2012-05-09 11:39:23 +00:00
|
|
|
|
2010-06-02 11:03:30 +00:00
|
|
|
template <typename T>
|
|
|
|
std::string save_to_string(T const& image,
|
2011-08-31 02:28:14 +00:00
|
|
|
std::string const& type,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette)
|
2010-06-02 11:03:30 +00:00
|
|
|
{
|
|
|
|
std::ostringstream ss(std::ios::out|std::ios::binary);
|
2011-08-31 02:28:14 +00:00
|
|
|
save_to_stream(image, ss, type, palette);
|
2010-06-02 11:03:30 +00:00
|
|
|
return ss.str();
|
|
|
|
}
|
2009-01-19 22:51:55 +00:00
|
|
|
|
2011-09-07 20:01:01 +00: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 11:03:30 +00:00
|
|
|
template <typename T>
|
|
|
|
void save_to_file(T const& image,
|
|
|
|
std::string const& filename,
|
2011-08-31 02:28:14 +00:00
|
|
|
std::string const& type,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette)
|
2010-06-02 11:03:30 +00:00
|
|
|
{
|
|
|
|
std::ofstream file (filename.c_str(), std::ios::out| std::ios::trunc|std::ios::binary);
|
|
|
|
if (file)
|
2009-07-13 22:36:16 +00:00
|
|
|
{
|
2011-08-31 02:28:14 +00:00
|
|
|
save_to_stream(image, file, type, palette);
|
2010-03-12 18:23:06 +00:00
|
|
|
}
|
2010-06-02 11:03:30 +00:00
|
|
|
else throw ImageWriterException("Could not write file to " + filename );
|
|
|
|
}
|
2010-03-12 18:23:06 +00:00
|
|
|
|
2011-09-07 00:45:18 +00: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 );
|
|
|
|
}
|
|
|
|
|
2015-01-08 21:55:51 +00:00
|
|
|
template <>
|
|
|
|
void save_to_stream<image_data_any>(image_data_any const& image,
|
2015-01-07 20:44:31 +00:00
|
|
|
std::ostream & stream,
|
|
|
|
std::string const& type,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette)
|
2010-06-02 11:03:30 +00:00
|
|
|
{
|
2012-02-10 20:14:53 +00:00
|
|
|
if (stream && image.width() > 0 && image.height() > 0)
|
2010-03-12 18:23:06 +00:00
|
|
|
{
|
2013-01-04 03:27:53 +00:00
|
|
|
std::string t = type;
|
|
|
|
std::transform(t.begin(), t.end(), t.begin(), ::tolower);
|
2012-02-10 19:20:00 +00:00
|
|
|
if (t == "png" || boost::algorithm::starts_with(t, "png"))
|
2009-07-13 22:36:16 +00:00
|
|
|
{
|
2015-01-08 21:55:51 +00:00
|
|
|
mapnik::util::apply_visitor(png_saver_pal(stream, t, palette), image);
|
2010-06-02 11:03:30 +00:00
|
|
|
}
|
2012-02-10 19:20:00 +00:00
|
|
|
else if (boost::algorithm::starts_with(t, "tif"))
|
2011-11-28 16:18:30 +00:00
|
|
|
{
|
|
|
|
throw ImageWriterException("palettes are not currently supported when writing to tiff format (yet)");
|
|
|
|
}
|
2012-02-10 19:20:00 +00:00
|
|
|
else if (boost::algorithm::starts_with(t, "jpeg"))
|
2011-09-07 00:45:18 +00:00
|
|
|
{
|
|
|
|
throw ImageWriterException("palettes are not currently supported when writing to jpeg format");
|
|
|
|
}
|
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
2012-02-02 01:53:35 +00:00
|
|
|
}
|
2011-09-07 00:45:18 +00:00
|
|
|
else throw ImageWriterException("Could not write to empty stream" );
|
|
|
|
}
|
|
|
|
|
2015-01-07 20:44:31 +00:00
|
|
|
void save_to_stream(image_data_any const& image,
|
2011-09-07 00:45:18 +00:00
|
|
|
std::ostream & stream,
|
|
|
|
std::string const& type)
|
|
|
|
{
|
2012-02-10 20:14:53 +00:00
|
|
|
if (stream && image.width() > 0 && image.height() > 0)
|
2011-09-07 00:45:18 +00:00
|
|
|
{
|
2013-01-04 03:27:53 +00:00
|
|
|
std::string t = type;
|
|
|
|
std::transform(t.begin(), t.end(), t.begin(), ::tolower);
|
2012-02-10 19:20:00 +00:00
|
|
|
if (t == "png" || boost::algorithm::starts_with(t, "png"))
|
2011-09-07 00:45:18 +00:00
|
|
|
{
|
2015-01-08 21:55:51 +00:00
|
|
|
util::apply_visitor(png_saver(stream, t), image);
|
2011-09-07 00:45:18 +00:00
|
|
|
}
|
2012-02-10 19:20:00 +00:00
|
|
|
else if (boost::algorithm::starts_with(t, "tif"))
|
2011-11-28 15:59:19 +00:00
|
|
|
{
|
2015-01-08 21:55:51 +00:00
|
|
|
util::apply_visitor(tiff_saver(stream, t), image);
|
2011-11-28 15:59:19 +00:00
|
|
|
}
|
2012-02-10 19:20:00 +00:00
|
|
|
else if (boost::algorithm::starts_with(t, "jpeg"))
|
2010-06-02 11:03:30 +00:00
|
|
|
{
|
2015-01-08 21:55:51 +00:00
|
|
|
util::apply_visitor(jpeg_saver(stream, t), image);
|
2013-07-19 05:09:17 +00:00
|
|
|
}
|
|
|
|
else if (boost::algorithm::starts_with(t, "webp"))
|
|
|
|
{
|
2015-01-08 21:55:51 +00:00
|
|
|
util::apply_visitor(webp_saver(stream, t), image);
|
2013-01-29 07:17:37 +00:00
|
|
|
}
|
2010-06-02 11:03:30 +00:00
|
|
|
else throw ImageWriterException("unknown file type: " + type);
|
2012-02-02 01:53:35 +00:00
|
|
|
}
|
2010-06-02 11:03:30 +00:00
|
|
|
else throw ImageWriterException("Could not write to empty stream" );
|
|
|
|
}
|
2011-08-31 02:28:14 +00:00
|
|
|
|
2010-06-02 11:03:30 +00:00
|
|
|
template <typename T>
|
2011-09-07 00:45:18 +00: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 01:14:39 +00:00
|
|
|
else throw ImageWriterException("Could not write file to " + filename );
|
2011-09-07 00:45:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
2015-01-08 21:55:51 +00:00
|
|
|
void save_to_file(T const& image, std::string const& filename, rgba_palette const& palette)
|
2010-06-02 11:03:30 +00:00
|
|
|
{
|
|
|
|
boost::optional<std::string> type = type_from_filename(filename);
|
|
|
|
if (type)
|
2009-07-13 22:36:16 +00:00
|
|
|
{
|
2011-08-31 02:28:14 +00:00
|
|
|
save_to_file<T>(image, filename, *type, palette);
|
2009-07-13 22:36:16 +00:00
|
|
|
}
|
2013-02-09 01:14:39 +00:00
|
|
|
else throw ImageWriterException("Could not write file to " + filename );
|
2010-06-02 11:03:30 +00:00
|
|
|
}
|
2010-01-11 18:55:30 +00:00
|
|
|
|
|
|
|
#if defined(HAVE_CAIRO)
|
2010-06-02 11:03:30 +00:00
|
|
|
// TODO - move to separate cairo_io.hpp
|
2013-06-28 00:07:25 +00:00
|
|
|
void save_to_cairo_file(mapnik::Map const& map, std::string const& filename, double scale_factor, double scale_denominator)
|
2010-06-02 11:03:30 +00:00
|
|
|
{
|
|
|
|
boost::optional<std::string> type = type_from_filename(filename);
|
|
|
|
if (type)
|
2010-01-11 18:55:30 +00:00
|
|
|
{
|
2013-06-28 00:07:25 +00:00
|
|
|
save_to_cairo_file(map,filename,*type,scale_factor,scale_denominator);
|
2010-01-11 18:55:30 +00:00
|
|
|
}
|
2013-02-09 01:14:39 +00:00
|
|
|
else throw ImageWriterException("Could not write file to " + filename );
|
2010-06-02 11:03:30 +00:00
|
|
|
}
|
2010-01-11 18:55:30 +00:00
|
|
|
|
2010-06-02 11:03:30 +00:00
|
|
|
void save_to_cairo_file(mapnik::Map const& map,
|
|
|
|
std::string const& filename,
|
2012-07-05 21:54:58 +00:00
|
|
|
std::string const& type,
|
2013-06-28 00:07:25 +00:00
|
|
|
double scale_factor,
|
|
|
|
double scale_denominator)
|
2010-06-02 11:03:30 +00:00
|
|
|
{
|
|
|
|
std::ofstream file (filename.c_str(), std::ios::out|std::ios::trunc|std::ios::binary);
|
|
|
|
if (file)
|
2010-01-11 18:55:30 +00:00
|
|
|
{
|
2013-01-09 17:00:30 +00:00
|
|
|
cairo_surface_ptr surface;
|
2010-06-25 15:23:35 +00:00
|
|
|
unsigned width = map.width();
|
|
|
|
unsigned height = map.height();
|
2010-06-02 11:03:30 +00:00
|
|
|
if (type == "pdf")
|
2012-03-21 22:34:01 +00:00
|
|
|
{
|
2013-01-09 17:00:30 +00: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 00:45:19 +00:00
|
|
|
#else
|
2012-03-21 22:34:01 +00:00
|
|
|
throw ImageWriterException("PDFSurface not supported in the cairo backend");
|
|
|
|
#endif
|
|
|
|
}
|
2013-01-09 17:00:30 +00:00
|
|
|
#ifdef CAIRO_HAS_SVG_SURFACE
|
2010-06-02 11:03:30 +00:00
|
|
|
else if (type == "svg")
|
2012-03-21 22:34:01 +00:00
|
|
|
{
|
2013-01-09 17:00:30 +00:00
|
|
|
surface = cairo_surface_ptr(cairo_svg_surface_create(filename.c_str(),width,height),cairo_surface_closer());
|
2012-03-21 22:34:01 +00:00
|
|
|
}
|
|
|
|
#endif
|
2013-01-09 17:00:30 +00:00
|
|
|
#ifdef CAIRO_HAS_PS_SURFACE
|
2010-06-02 11:03:30 +00:00
|
|
|
else if (type == "ps")
|
2012-03-21 22:34:01 +00:00
|
|
|
{
|
2013-01-09 17:00:30 +00:00
|
|
|
surface = cairo_surface_ptr(cairo_ps_surface_create(filename.c_str(),width,height),cairo_surface_closer());
|
2012-03-21 22:34:01 +00:00
|
|
|
}
|
|
|
|
#endif
|
2013-01-09 17:00:30 +00:00
|
|
|
#ifdef CAIRO_HAS_IMAGE_SURFACE
|
2010-06-02 11:03:30 +00:00
|
|
|
else if (type == "ARGB32")
|
2012-03-21 22:34:01 +00:00
|
|
|
{
|
2013-01-09 17:00:30 +00:00
|
|
|
surface = cairo_surface_ptr(cairo_image_surface_create(CAIRO_FORMAT_ARGB32,width,height),cairo_surface_closer());
|
2012-03-21 22:34:01 +00:00
|
|
|
}
|
2010-06-02 11:03:30 +00:00
|
|
|
else if (type == "RGB24")
|
2012-03-21 22:34:01 +00:00
|
|
|
{
|
2013-01-09 17:00:30 +00:00
|
|
|
surface = cairo_surface_ptr(cairo_image_surface_create(CAIRO_FORMAT_RGB24,width,height),cairo_surface_closer());
|
2012-03-21 22:34:01 +00:00
|
|
|
}
|
|
|
|
#endif
|
2012-02-02 01:53:35 +00:00
|
|
|
else
|
2012-03-21 22:34:01 +00:00
|
|
|
{
|
2012-02-02 01:53:35 +00:00
|
|
|
throw ImageWriterException("unknown file type: " + type);
|
2012-03-21 22:34:01 +00:00
|
|
|
}
|
|
|
|
|
2013-01-09 17:00:30 +00:00
|
|
|
//cairo_t * ctx = cairo_create(surface);
|
2012-02-02 01:53:35 +00:00
|
|
|
|
2010-06-02 11:03:30 +00:00
|
|
|
// TODO - expose as user option
|
|
|
|
/*
|
2012-02-02 01:53:35 +00:00
|
|
|
if (type == "ARGB32" || type == "RGB24")
|
|
|
|
{
|
|
|
|
context->set_antialias(Cairo::ANTIALIAS_NONE);
|
2010-01-11 18:55:30 +00:00
|
|
|
}
|
2010-06-02 11:03:30 +00:00
|
|
|
*/
|
2012-02-02 01:53:35 +00:00
|
|
|
|
2013-01-09 17:00:30 +00:00
|
|
|
mapnik::cairo_renderer<cairo_ptr> ren(map, create_context(surface), scale_factor);
|
2013-06-28 00:07:25 +00:00
|
|
|
ren.apply(scale_denominator);
|
2012-02-02 01:53:35 +00:00
|
|
|
|
|
|
|
if (type == "ARGB32" || type == "RGB24")
|
|
|
|
{
|
2013-01-09 17:00:30 +00:00
|
|
|
cairo_surface_write_to_png(&*surface, filename.c_str());
|
2010-01-11 18:55:30 +00:00
|
|
|
}
|
2013-01-09 17:00:30 +00:00
|
|
|
cairo_surface_finish(&*surface);
|
2010-01-11 18:55:30 +00:00
|
|
|
}
|
2010-06-02 11:03:30 +00:00
|
|
|
}
|
2010-01-11 18:55:30 +00:00
|
|
|
|
|
|
|
#endif
|
2005-06-14 15:06:59 +00:00
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template void save_to_file<image_data_rgba8>(image_data_rgba8 const&,
|
2011-09-07 00:45:18 +00:00
|
|
|
std::string const&,
|
|
|
|
std::string const&);
|
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template void save_to_file<image_data_rgba8>(image_data_rgba8 const&,
|
2010-06-02 11:03:30 +00:00
|
|
|
std::string const&,
|
2011-08-31 02:28:14 +00:00
|
|
|
std::string const&,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette);
|
2009-07-26 01:15:44 +00:00
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template void save_to_file<image_data_rgba8>(image_data_rgba8 const&,
|
2011-09-07 00:45:18 +00:00
|
|
|
std::string const&);
|
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template void save_to_file<image_data_rgba8>(image_data_rgba8 const&,
|
2011-08-31 02:28:14 +00:00
|
|
|
std::string const&,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette);
|
2007-12-06 12:14:29 +00:00
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template std::string save_to_string<image_data_rgba8>(image_data_rgba8 const&,
|
2011-09-07 20:01:01 +00:00
|
|
|
std::string const&);
|
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template std::string save_to_string<image_data_rgba8>(image_data_rgba8 const&,
|
2011-08-31 02:28:14 +00:00
|
|
|
std::string const&,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette);
|
2009-01-19 22:51:55 +00:00
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template void save_to_file<image_view<image_data_rgba8> > (image_view<image_data_rgba8> const&,
|
2011-09-07 00:45:18 +00:00
|
|
|
std::string const&,
|
|
|
|
std::string const&);
|
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template void save_to_file<image_view<image_data_rgba8> > (image_view<image_data_rgba8> const&,
|
2010-06-02 11:03:30 +00:00
|
|
|
std::string const&,
|
2011-08-31 02:28:14 +00:00
|
|
|
std::string const&,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette);
|
2011-09-07 00:45:18 +00:00
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template void save_to_file<image_view<image_data_rgba8> > (image_view<image_data_rgba8> const&,
|
2011-09-07 00:45:18 +00:00
|
|
|
std::string const&);
|
2012-02-02 01:53:35 +00:00
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template void save_to_file<image_view<image_data_rgba8> > (image_view<image_data_rgba8> const&,
|
2011-08-31 02:28:14 +00:00
|
|
|
std::string const&,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette);
|
2012-02-02 01:53:35 +00:00
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template std::string save_to_string<image_view<image_data_rgba8> > (image_view<image_data_rgba8> const&,
|
2011-09-07 20:01:01 +00:00
|
|
|
std::string const&);
|
2012-02-02 01:53:35 +00:00
|
|
|
|
2014-12-04 10:02:42 +00:00
|
|
|
template std::string save_to_string<image_view<image_data_rgba8> > (image_view<image_data_rgba8> const&,
|
2011-08-31 02:28:14 +00:00
|
|
|
std::string const&,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette);
|
2009-01-19 22:51:55 +00:00
|
|
|
|
2012-05-09 11:39:23 +00:00
|
|
|
void save_to_file(image_32 const& image,std::string const& file)
|
|
|
|
{
|
2014-12-04 10:02:42 +00:00
|
|
|
save_to_file<image_data_rgba8>(image.data(), file);
|
2012-05-09 11:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void save_to_file (image_32 const& image,
|
|
|
|
std::string const& file,
|
|
|
|
std::string const& type)
|
|
|
|
{
|
2014-12-04 10:02:42 +00:00
|
|
|
save_to_file<image_data_rgba8>(image.data(), file, type);
|
2012-05-09 11:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void save_to_file (image_32 const& image,
|
|
|
|
std::string const& file,
|
|
|
|
std::string const& type,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette)
|
2012-05-09 11:39:23 +00:00
|
|
|
{
|
2014-12-04 10:02:42 +00:00
|
|
|
save_to_file<image_data_rgba8>(image.data(), file, type, palette);
|
2012-05-09 11:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string save_to_string(image_32 const& image,
|
|
|
|
std::string const& type)
|
|
|
|
{
|
2014-12-04 10:02:42 +00:00
|
|
|
return save_to_string<image_data_rgba8>(image.data(), type);
|
2012-05-09 11:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string save_to_string(image_32 const& image,
|
|
|
|
std::string const& type,
|
2015-01-08 21:55:51 +00:00
|
|
|
rgba_palette const& palette)
|
2012-05-09 11:39:23 +00:00
|
|
|
{
|
2014-12-04 10:02:42 +00:00
|
|
|
return save_to_string<image_data_rgba8>(image.data(), type, palette);
|
2012-05-09 11:39:23 +00:00
|
|
|
}
|
|
|
|
|
2005-06-14 15:06:59 +00:00
|
|
|
}
|