mapnik/src/image_util.cpp

329 lines
11 KiB
C++
Raw Normal View History

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
// mapnik
#include <mapnik/image_util.hpp>
#include <mapnik/image_util_jpeg.hpp>
#include <mapnik/image_util_png.hpp>
#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>
#include <mapnik/memory.hpp>
#include <mapnik/image_view.hpp>
#include <mapnik/palette.hpp>
2010-06-18 15:38:29 +00:00
#include <mapnik/map.hpp>
#include <mapnik/util/conversions.hpp>
#include <mapnik/util/variant.hpp>
#ifdef HAVE_CAIRO
#include <mapnik/cairo/cairo_renderer.hpp>
#include <cairo.h>
#ifdef CAIRO_HAS_PDF_SURFACE
#include <cairo-pdf.h>
2014-08-09 20:41:34 +00:00
#endif
#ifdef CAIRO_HAS_PS_SURFACE
#include <cairo-ps.h>
2014-08-09 20:41:34 +00:00
#endif
#ifdef CAIRO_HAS_SVG_SURFACE
#include <cairo-svg.h>
2014-08-09 20:41:34 +00:00
#endif
#endif
// boost
#include <boost/tokenizer.hpp>
2007-10-08 17:42:41 +00:00
// stl
#include <string>
#include <iostream>
#include <fstream>
#include <sstream>
#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
{
2010-06-02 11:03:30 +00:00
template <typename T>
std::string save_to_string(T const& image,
std::string const& type,
rgba_palette const& palette)
2010-06-02 11:03:30 +00:00
{
std::ostringstream ss(std::ios::out|std::ios::binary);
save_to_stream(image, ss, type, palette);
2010-06-02 11:03:30 +00:00
return ss.str();
}
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,
std::string const& type,
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
{
save_to_stream(image, file, type, palette);
}
2010-06-02 11:03:30 +00:00
else throw ImageWriterException("Could not write file to " + filename );
}
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 );
}
template <typename T>
void save_to_stream(T const& image,
std::ostream & stream,
std::string const& type,
rgba_palette const& palette)
2010-06-02 11:03:30 +00:00
{
if (stream && image.width() > 0 && image.height() > 0)
{
std::string t = type;
std::transform(t.begin(), t.end(), t.begin(), ::tolower);
if (t == "png" || boost::algorithm::starts_with(t, "png"))
2009-07-13 22:36:16 +00:00
{
png_saver_pal visitor(stream, t, palette);
visitor(image);
//mapnik::util::apply_visitor(visitor, image);
2010-06-02 11:03:30 +00:00
}
else if (boost::algorithm::starts_with(t, "tif"))
{
throw ImageWriterException("palettes are not currently supported when writing to tiff format (yet)");
}
else if (boost::algorithm::starts_with(t, "jpeg"))
{
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
}
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 && image.width() > 0 && image.height() > 0)
{
std::string t = type;
std::transform(t.begin(), t.end(), t.begin(), ::tolower);
if (t == "png" || boost::algorithm::starts_with(t, "png"))
{
png_saver visitor(stream, t);
visitor(image);
//util::apply_visitor(visitor, image);
}
else if (boost::algorithm::starts_with(t, "tif"))
{
tiff_saver visitor(stream, t);
visitor(image);
//util::apply_visitor(visitor, image);
}
else if (boost::algorithm::starts_with(t, "jpeg"))
2010-06-02 11:03:30 +00:00
{
jpeg_saver visitor(stream, t);
visitor(image);
//util::apply_visitor(visitor, image);
}
else if (boost::algorithm::starts_with(t, "webp"))
{
webp_saver visitor(stream, t);
visitor(image);
//util::apply_visitor(visitor, image);
}
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" );
}
2010-06-02 11:03:30 +00:00
template <typename T>
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);
}
else throw ImageWriterException("Could not write file to " + filename );
}
template <typename T>
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
{
save_to_file<T>(image, filename, *type, palette);
2009-07-13 22:36:16 +00:00
}
else throw ImageWriterException("Could not write file to " + filename );
2010-06-02 11:03:30 +00:00
}
#if defined(HAVE_CAIRO)
2010-06-02 11:03:30 +00:00
// TODO - move to separate cairo_io.hpp
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)
{
save_to_cairo_file(map,filename,*type,scale_factor,scale_denominator);
}
else throw ImageWriterException("Could not write file to " + filename );
2010-06-02 11:03:30 +00:00
}
2010-06-02 11:03:30 +00:00
void save_to_cairo_file(mapnik::Map const& map,
std::string const& filename,
std::string const& type,
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)
{
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")
{
#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
throw ImageWriterException("PDFSurface not supported in the cairo backend");
#endif
}
#ifdef CAIRO_HAS_SVG_SURFACE
2010-06-02 11:03:30 +00:00
else if (type == "svg")
{
surface = cairo_surface_ptr(cairo_svg_surface_create(filename.c_str(),width,height),cairo_surface_closer());
}
#endif
#ifdef CAIRO_HAS_PS_SURFACE
2010-06-02 11:03:30 +00:00
else if (type == "ps")
{
surface = cairo_surface_ptr(cairo_ps_surface_create(filename.c_str(),width,height),cairo_surface_closer());
}
#endif
#ifdef CAIRO_HAS_IMAGE_SURFACE
2010-06-02 11:03:30 +00:00
else if (type == "ARGB32")
{
surface = cairo_surface_ptr(cairo_image_surface_create(CAIRO_FORMAT_ARGB32,width,height),cairo_surface_closer());
}
2010-06-02 11:03:30 +00:00
else if (type == "RGB24")
{
surface = cairo_surface_ptr(cairo_image_surface_create(CAIRO_FORMAT_RGB24,width,height),cairo_surface_closer());
}
#endif
2012-02-02 01:53:35 +00:00
else
{
2012-02-02 01:53:35 +00:00
throw ImageWriterException("unknown file type: " + type);
}
//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-06-02 11:03:30 +00:00
*/
2012-02-02 01:53:35 +00:00
mapnik::cairo_renderer<cairo_ptr> ren(map, create_context(surface), scale_factor);
ren.apply(scale_denominator);
2012-02-02 01:53:35 +00:00
if (type == "ARGB32" || type == "RGB24")
{
cairo_surface_write_to_png(&*surface, filename.c_str());
}
cairo_surface_finish(&*surface);
}
2010-06-02 11:03:30 +00:00
}
#endif
2005-06-14 15:06:59 +00:00
template void save_to_file<image_data_rgba8>(image_data_rgba8 const&,
std::string const&,
std::string const&);
template void save_to_file<image_data_rgba8>(image_data_rgba8 const&,
2010-06-02 11:03:30 +00:00
std::string const&,
std::string const&,
rgba_palette const& palette);
template void save_to_file<image_data_rgba8>(image_data_rgba8 const&,
std::string const&);
template void save_to_file<image_data_rgba8>(image_data_rgba8 const&,
std::string const&,
rgba_palette const& palette);
template std::string save_to_string<image_data_rgba8>(image_data_rgba8 const&,
std::string const&);
template std::string save_to_string<image_data_rgba8>(image_data_rgba8 const&,
std::string const&,
rgba_palette const& palette);
template void save_to_file<image_view<image_data_rgba8> > (image_view<image_data_rgba8> const&,
std::string const&,
std::string const&);
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&,
std::string const&,
rgba_palette const& palette);
template void save_to_file<image_view<image_data_rgba8> > (image_view<image_data_rgba8> const&,
std::string const&);
2012-02-02 01:53:35 +00:00
template void save_to_file<image_view<image_data_rgba8> > (image_view<image_data_rgba8> const&,
std::string const&,
rgba_palette const& palette);
2012-02-02 01:53:35 +00:00
template std::string save_to_string<image_view<image_data_rgba8> > (image_view<image_data_rgba8> const&,
std::string const&);
2012-02-02 01:53:35 +00:00
template std::string save_to_string<image_view<image_data_rgba8> > (image_view<image_data_rgba8> const&,
std::string const&,
rgba_palette const& palette);
2005-06-14 15:06:59 +00:00
}