/***************************************************************************** * * This file is part of Mapnik (c++ mapping toolkit) * * Copyright (C) 2011 Artem Pavlenko * * 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, * but WITHOUT ANY WARRANTY; without even the implied warranty of * 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 * *****************************************************************************/ #if defined(HAVE_PNG) extern "C" { #include } #endif // mapnik #if defined(HAVE_PNG) #include #endif #if defined(HAVE_TIFF) #include #endif #if defined(HAVE_JPEG) #include #endif #if defined(HAVE_WEBP) #include #endif #include #include #include #include #include #include #include #include #ifdef HAVE_CAIRO #include #include #ifdef CAIRO_HAS_PDF_SURFACE #include #endif // CAIRO_HAS_PDF_SURFACE #ifdef CAIRO_HAS_PS_SURFACE #include #endif // CAIRO_HAS_PS_SURFACE #ifdef CAIRO_HAS_SVG_SURFACE #include #endif // CAIRO_HAS_SVG_SURFACE #endif // boost #include #include // stl #include #include #include #include #include namespace mapnik { template std::string save_to_string(T const& image, std::string const& type, rgba_palette const& palette) { std::ostringstream ss(std::ios::out|std::ios::binary); save_to_stream(image, ss, type, palette); return ss.str(); } template 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(); } template void save_to_file(T const& image, std::string const& filename, std::string const& type, rgba_palette const& palette) { std::ofstream file (filename.c_str(), std::ios::out| std::ios::trunc|std::ios::binary); if (file) { save_to_stream(image, file, type, palette); } else throw ImageWriterException("Could not write file to " + filename ); } template 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 ); } #if defined(HAVE_PNG) void handle_png_options(std::string const& type, png_options & opts) { if (type == "png" || type == "png8" || type == "png256") { // stick with defaults return; } else if (type == "png24" || type == "png32") { opts.paletted = false; return; } boost::char_separator sep(":"); boost::tokenizer< boost::char_separator > tokens(type, sep); bool set_colors = false; bool set_gamma = false; BOOST_FOREACH(std::string const& t, tokens) { if (t == "png24" || t == "png32") { opts.paletted = false; } else if (t == "m=o") { opts.use_hextree = false; } else if (t == "e=miniz") { 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) { throw ImageWriterException("invalid color parameter: " + t.substr(2)); } } 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) { throw ImageWriterException("invalid trans_mode parameter: " + t.substr(2)); } } else if (boost::algorithm::starts_with(t, "g=")) { set_gamma = true; if (!mapnik::util::string2double(t.substr(2),opts.gamma) || opts.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),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 { throw ImageWriterException("invalid compression parameter: " + t.substr(2) + " (only -1 through 10 are valid)"); } } else if (boost::algorithm::starts_with(t, "s=")) { std::string s = t.substr(2); if (s == "default") { opts.strategy = Z_DEFAULT_STRATEGY; } else if (s == "filtered") { opts.strategy = Z_FILTERED; } else if (s == "huff") { opts.strategy = Z_HUFFMAN_ONLY; } else if (s == "rle") { opts.strategy = Z_RLE; } else if (s == "fixed") { opts.strategy = Z_FIXED; } else { throw ImageWriterException("invalid compression strategy parameter: " + s); } } } // 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)"); } } #endif #if defined(HAVE_WEBP) void handle_webp_options(std::string const& type, webp_options & opts) { if (type == "webp") { return; } if (type.length() > 4){ boost::char_separator sep(":"); boost::tokenizer< boost::char_separator > tokens(type, sep); BOOST_FOREACH(std::string const& t, tokens) { if (boost::algorithm::starts_with(t, "quality=")) { std::string val = t.substr(8); if (!val.empty()) { if (!mapnik::util::string2double(val,opts.quality) || opts.quality < 0.0 || opts.quality > 100.0) { throw ImageWriterException("invalid webp quality: '" + val + "'"); } } } else if (boost::algorithm::starts_with(t, "method=")) { std::string val = t.substr(7); if (!val.empty()) { if (!mapnik::util::string2int(val,opts.method) || opts.method < 0 || opts.method > 6) { throw ImageWriterException("invalid webp method: '" + val + "'"); } } } else if (boost::algorithm::starts_with(t, "lossless=")) { std::string val = t.substr(9); if (!val.empty()) { if (!mapnik::util::string2int(val,opts.lossless) || opts.lossless < 0 || opts.lossless > 1) { throw ImageWriterException("invalid webp lossless: '" + val + "'"); } } } else if (boost::algorithm::starts_with(t, "image_hint=")) { std::string val = t.substr(11); if (!val.empty()) { if (!mapnik::util::string2int(val,opts.image_hint) || opts.image_hint < 0 || opts.image_hint > 3) { throw ImageWriterException("invalid webp image_hint: '" + val + "'"); } } } else if (boost::algorithm::starts_with(t, "alpha=")) { std::string val = t.substr(6); if (!val.empty()) { if (!mapnik::util::string2bool(val,opts.alpha)) { throw ImageWriterException("invalid webp alpha: '" + val + "'"); } } } } } } #endif template void save_to_stream(T const& image, std::ostream & stream, std::string const& type, rgba_palette const& palette) { 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")) { #if defined(HAVE_PNG) if (palette.valid()) { png_options opts; handle_png_options(t,opts); save_as_png8_pal(stream, image, palette, opts); } else { save_to_stream(image,stream,type); } #else throw ImageWriterException("png output is not enabled in your build of Mapnik"); #endif } 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); } else throw ImageWriterException("Could not write to empty stream" ); } template 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")) { #if defined(HAVE_PNG) png_options opts; handle_png_options(t,opts); if (opts.paletted) { if (opts.use_hextree) { save_as_png8_hex(stream, image, opts); } else { save_as_png8_oct(stream, image, opts); } } else { save_as_png(stream, image, opts); } #else throw ImageWriterException("png output is not enabled in your build of Mapnik"); #endif } else if (boost::algorithm::starts_with(t, "tif")) { #if defined(HAVE_TIFF) save_as_tiff(stream, image); #else throw ImageWriterException("tiff output is not enabled in your build of Mapnik"); #endif } else if (boost::algorithm::starts_with(t, "jpeg")) { #if defined(HAVE_JPEG) int quality = 85; std::string val = t.substr(4); if (!val.empty()) { if (!mapnik::util::string2int(val,quality) || quality < 0 || quality > 100) { throw ImageWriterException("invalid jpeg quality: '" + val + "'"); } } save_as_jpeg(stream, quality, image); #else throw ImageWriterException("jpeg output is not enabled in your build of Mapnik"); #endif } else if (boost::algorithm::starts_with(t, "webp")) { #if defined(HAVE_WEBP) webp_options opts; handle_webp_options(t,opts); save_as_webp(stream, image, opts); #else throw ImageWriterException("webp output is not enabled in your build of Mapnik"); #endif } else throw ImageWriterException("unknown file type: " + type); } else throw ImageWriterException("Could not write to empty stream" ); } template void save_to_file(T const& image, std::string const& filename) { boost::optional type = type_from_filename(filename); if (type) { save_to_file(image, filename, *type); } else throw ImageWriterException("Could not write file to " + filename ); } template void save_to_file(T const& image, std::string const& filename, rgba_palette const& palette) { boost::optional type = type_from_filename(filename); if (type) { save_to_file(image, filename, *type, palette); } else throw ImageWriterException("Could not write file to " + filename ); } #if defined(HAVE_CAIRO) // 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) { boost::optional 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 ); } void save_to_cairo_file(mapnik::Map const& map, std::string const& filename, std::string const& type, double scale_factor, double scale_denominator) { std::ofstream file (filename.c_str(), std::ios::out|std::ios::trunc|std::ios::binary); if (file) { cairo_surface_ptr surface; unsigned width = map.width(); unsigned height = map.height(); if (type == "pdf") { #ifdef CAIRO_HAS_PDF_SURFACE surface = cairo_surface_ptr(cairo_pdf_surface_create(filename.c_str(),width,height),cairo_surface_closer()); #else throw ImageWriterException("PDFSurface not supported in the cairo backend"); #endif } #ifdef CAIRO_HAS_SVG_SURFACE 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 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 else if (type == "ARGB32") { surface = cairo_surface_ptr(cairo_image_surface_create(CAIRO_FORMAT_ARGB32,width,height),cairo_surface_closer()); } else if (type == "RGB24") { surface = cairo_surface_ptr(cairo_image_surface_create(CAIRO_FORMAT_RGB24,width,height),cairo_surface_closer()); } #endif else { throw ImageWriterException("unknown file type: " + type); } //cairo_t * ctx = cairo_create(surface); // TODO - expose as user option /* if (type == "ARGB32" || type == "RGB24") { context->set_antialias(Cairo::ANTIALIAS_NONE); } */ mapnik::cairo_renderer ren(map, create_context(surface), scale_factor); ren.apply(scale_denominator); if (type == "ARGB32" || type == "RGB24") { cairo_surface_write_to_png(&*surface, filename.c_str()); } cairo_surface_finish(&*surface); } } #endif template void save_to_file(image_data_32 const&, std::string const&, std::string const&); template void save_to_file(image_data_32 const&, std::string const&, std::string const&, rgba_palette const& palette); template void save_to_file(image_data_32 const&, std::string const&); template void save_to_file(image_data_32 const&, std::string const&, rgba_palette const& palette); template std::string save_to_string(image_data_32 const&, std::string const&); template std::string save_to_string(image_data_32 const&, std::string const&, rgba_palette const& palette); template void save_to_file > (image_view const&, std::string const&, std::string const&); template void save_to_file > (image_view const&, std::string const&, std::string const&, rgba_palette const& palette); template void save_to_file > (image_view const&, std::string const&); template void save_to_file > (image_view const&, std::string const&, rgba_palette const& palette); template std::string save_to_string > (image_view const&, std::string const&); template std::string save_to_string > (image_view 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(), file); } void save_to_file (image_32 const& image, std::string const& file, std::string const& type) { save_to_file(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(), file, type, palette); } std::string save_to_string(image_32 const& image, std::string const& type) { return save_to_string(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(), type, palette); } }