mapnik/src/image_util.cpp

529 lines
18 KiB
C++
Raw Normal View History

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
*
* 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
extern "C"
{
#include <png.h>
}
// mapnik
2007-10-08 19:42:41 +02:00
#include <mapnik/image_util.hpp>
#include <mapnik/png_io.hpp>
#include <mapnik/tiff_io.hpp>
2012-11-01 18:02:08 +01:00
#include <mapnik/image_data.hpp>
#include <mapnik/graphics.hpp>
#include <mapnik/memory.hpp>
#include <mapnik/image_view.hpp>
#include <mapnik/palette.hpp>
2010-06-18 17:38:29 +02:00
#include <mapnik/map.hpp>
#include <mapnik/util/conversions.hpp>
// jpeg
#if defined(HAVE_JPEG)
#include <mapnik/jpeg_io.hpp>
#endif
#ifdef HAVE_CAIRO
#include <mapnik/cairo_renderer.hpp>
#include <cairo-features.h>
#endif
// boost
#include <boost/foreach.hpp>
#include <boost/tokenizer.hpp>
2007-10-08 19:42:41 +02:00
// stl
#include <string>
#include <iostream>
#include <fstream>
#include <sstream>
#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
{
2010-06-02 13:03:30 +02:00
template <typename T>
std::string save_to_string(T const& image,
std::string const& type,
rgba_palette const& palette)
2010-06-02 13:03:30 +02:00
{
std::ostringstream ss(std::ios::out|std::ios::binary);
save_to_stream(image, ss, type, palette);
2010-06-02 13:03:30 +02: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 13:03:30 +02: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 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
{
save_to_stream(image, file, type, palette);
}
2010-06-02 13:03:30 +02: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 );
}
void handle_png_options(std::string const& type,
2012-02-02 02:53:35 +01:00
int * colors,
int * compression,
int * strategy,
int * trans_mode,
double * gamma,
2012-11-04 13:10:05 +01:00
bool * use_octree,
bool * use_miniz)
{
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;
}
2012-11-04 13:10:05 +01:00
else if (t == "e=miniz")
{
*use_miniz = true;
}
else if (boost::algorithm::starts_with(t, "c="))
{
if (*colors < 0)
throw ImageWriterException("invalid color parameter: unavailable for true color images");
if (!mapnik::util::string2int(t.substr(2),*colors) || *colors < 1 || *colors > 256)
throw ImageWriterException("invalid color parameter: " + t.substr(2));
}
else if (boost::algorithm::starts_with(t, "t="))
{
if (!mapnik::util::string2int(t.substr(2),*trans_mode) || *trans_mode < 0 || *trans_mode > 2)
throw ImageWriterException("invalid trans_mode parameter: " + t.substr(2));
}
else if (boost::algorithm::starts_with(t, "g="))
{
if (*colors < 0)
throw ImageWriterException("invalid gamma parameter: unavailable for true color images");
if (!mapnik::util::string2double(t.substr(2),*gamma) || *gamma < 0)
{
throw ImageWriterException("invalid gamma parameter: " + t.substr(2));
}
}
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),*compression)
|| *compression < Z_DEFAULT_COMPRESSION
2012-11-04 13:10:05 +01:00
|| *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
throw ImageWriterException("invalid compression parameter: " + t.substr(2) + " (only -1 through 10 are valid)");
}
}
else if (boost::algorithm::starts_with(t, "s="))
{
std::string const& s = 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 if (s == "fixed")
{
*strategy = Z_FIXED;
}
else
{
throw ImageWriterException("invalid compression strategy parameter: " + s);
}
}
}
2012-11-04 13:10:05 +01:00
if ((*use_miniz == false) && *compression > Z_BEST_COMPRESSION)
{
throw ImageWriterException("invalid compression value: (only -1 through 9 are valid)");
}
}
}
2010-06-02 13:03:30 +02:00
template <typename T>
void save_to_stream(T const& image,
std::ostream & stream,
std::string const& type,
rgba_palette const& palette)
2010-06-02 13:03:30 +02: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-14 00:36:16 +02:00
{
2010-06-02 13:03:30 +02:00
int colors = 256;
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;
2012-11-04 13:10:05 +01:00
bool use_miniz = false;
handle_png_options(t,
2012-02-02 02:53:35 +01:00
&colors,
&compression,
&strategy,
&trans_mode,
&gamma,
2012-11-04 13:10:05 +01:00
&use_octree,
&use_miniz);
if (palette.valid())
2012-11-04 13:10:05 +01:00
{
save_as_png8_pal(stream, image, palette, compression, strategy, use_miniz);
}
else if (colors < 0)
2012-11-04 13:10:05 +01:00
{
save_as_png(stream, image, compression, strategy, trans_mode, use_miniz);
2012-11-04 13:10:05 +01:00
}
else if (use_octree)
2012-11-04 13:10:05 +01:00
{
save_as_png8_oct(stream, image, colors, compression, strategy, trans_mode, use_miniz);
}
2010-06-02 13:03:30 +02:00
else
2012-11-04 13:10:05 +01:00
{
save_as_png8_hex(stream, image, colors, compression, strategy, trans_mode, gamma, use_miniz);
}
2010-06-02 13:03:30 +02:00
}
else if (boost::algorithm::starts_with(t, "tif"))
{
throw ImageWriterException("palettes are not currently supported when writing to tiff format (yet)");
}
#if defined(HAVE_JPEG)
else if (boost::algorithm::starts_with(t, "jpeg"))
{
throw ImageWriterException("palettes are not currently supported when writing to jpeg format");
}
#endif
else throw ImageWriterException("unknown file type: " + type);
2012-02-02 02:53:35 +01: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"))
{
int colors = 256;
int compression = Z_DEFAULT_COMPRESSION; // usually mapped to z=6 in zlib
int strategy = Z_DEFAULT_STRATEGY;
int trans_mode = -1;
double gamma = -1;
bool use_octree = true;
2012-11-04 13:10:05 +01:00
bool use_miniz = false;
handle_png_options(t,
2012-02-02 02:53:35 +01:00
&colors,
&compression,
&strategy,
&trans_mode,
&gamma,
2012-11-04 13:10:05 +01:00
&use_octree,
&use_miniz);
if (colors < 0)
2012-11-04 13:10:05 +01:00
{
save_as_png(stream, image, compression, strategy, trans_mode, use_miniz);
2012-11-04 13:10:05 +01:00
}
else if (use_octree)
2012-11-04 13:10:05 +01:00
{
save_as_png8_oct(stream, image, colors, compression, strategy, trans_mode, use_miniz);
}
else
2012-11-04 13:10:05 +01:00
{
save_as_png8_hex(stream, image, colors, compression, strategy, trans_mode, gamma, use_miniz);
}
}
else if (boost::algorithm::starts_with(t, "tif"))
{
save_as_tiff(stream, image);
}
#if defined(HAVE_JPEG)
else if (boost::algorithm::starts_with(t, "jpeg"))
2010-06-02 13:03:30 +02:00
{
int quality = 85;
std::string const& val = t.substr(4);
if (!val.empty())
2009-07-14 00:36:16 +02:00
{
if (!mapnik::util::string2int(val,quality) || quality < 0 || quality > 100)
2009-07-14 00:36:16 +02:00
{
throw ImageWriterException("invalid jpeg quality: '" + val + "'");
2009-07-14 00:36:16 +02:00
}
}
save_as_jpeg(stream, quality, image);
2010-06-02 13:03:30 +02:00
}
#endif
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" );
}
2010-06-02 13:03:30 +02: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);
}
}
template <typename T>
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
{
save_to_file<T>(image, filename, *type, palette);
2009-07-14 00:36:16 +02:00
}
2010-06-02 13:03:30 +02: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, double scale_factor)
2010-06-02 13:03:30 +02:00
{
boost::optional<std::string> type = type_from_filename(filename);
if (type)
{
save_to_cairo_file(map,filename,*type,scale_factor);
}
2010-06-02 13:03:30 +02: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,
double scale_factor)
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-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")
{
#if defined(CAIRO_HAS_PDF_SURFACE)
2010-06-02 13:03:30 +02:00
surface = Cairo::PdfSurface::create(filename,width,height);
2012-03-22 01:45:19 +01:00
#else
throw ImageWriterException("PDFSurface not supported in the cairo backend");
#endif
}
#if defined(CAIRO_HAS_SVG_SURFACE)
2010-06-02 13:03:30 +02:00
else if (type == "svg")
{
2010-06-02 13:03:30 +02:00
surface = Cairo::SvgSurface::create(filename,width,height);
}
#endif
#if defined(CAIRO_HAS_PS_SURFACE)
2010-06-02 13:03:30 +02:00
else if (type == "ps")
{
2010-06-02 13:03:30 +02:00
surface = Cairo::PsSurface::create(filename,width,height);
}
#endif
#if defined(CAIRO_HAS_IMAGE_SURFACE)
2010-06-02 13:03:30 +02:00
else if (type == "ARGB32")
{
2010-06-02 13:03:30 +02:00
surface = Cairo::ImageSurface::create(Cairo::FORMAT_ARGB32,width,height);
}
2010-06-02 13:03:30 +02:00
else if (type == "RGB24")
{
2010-06-02 13:03:30 +02:00
surface = Cairo::ImageSurface::create(Cairo::FORMAT_RGB24,width,height);
}
#endif
2012-02-02 02:53:35 +01:00
else
{
2012-02-02 02:53:35 +01:00
throw ImageWriterException("unknown file type: " + type);
}
2010-06-02 13:03:30 +02:00
Cairo::RefPtr<Cairo::Context> context = Cairo::Context::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-06-02 13:03:30 +02:00
*/
2012-02-02 02:53:35 +01:00
mapnik::cairo_renderer<Cairo::Context> ren(map, context, scale_factor);
2010-06-02 13:03:30 +02:00
ren.apply();
2012-02-02 02:53:35 +01:00
if (type == "ARGB32" || type == "RGB24")
{
2010-06-02 13:03:30 +02:00
surface->write_to_png(filename);
}
2010-06-02 13:03:30 +02:00
surface->finish();
}
2010-06-02 13:03:30 +02:00
}
#endif
2005-06-14 17:06:59 +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&,
std::string const&,
rgba_palette const& palette);
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&,
std::string const&,
rgba_palette const& palette);
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&,
std::string const&,
rgba_palette const& palette);
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&,
std::string const&,
rgba_palette const& palette);
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&,
std::string const&,
rgba_palette const& palette);
2012-02-02 02:53:35 +01: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&,
std::string const&,
rgba_palette const& palette);
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
}