/***************************************************************************** * * This file is part of Mapnik (c++ mapping toolkit) * * Copyright (C) 2014 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 #include #include #include #include #include #include // boost #include // stl #include #include namespace mapnik { #if defined(HAVE_PNG) void handle_png_options(std::string const& type, png_options & opts) { if (type == "png" || type == "png24" || type == "png32") { opts.paletted = false; return; } else if (type == "png8" || type == "png256") { opts.paletted = true; return; } boost::char_separator sep(":"); boost::tokenizer< boost::char_separator > tokens(type, sep); bool set_colors = false; bool set_gamma = false; for (std::string const& t : tokens) { if (t == "png8" || t == "png256") { opts.paletted = true; } else if (t == "png" || t == "png24" || t == "png32") { opts.paletted = false; } else if (t == "m=o") { opts.use_hextree = false; } else if (t == "m=h") { opts.use_hextree = true; } 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); } } else { throw ImageWriterException("unhandled png option: " + t); } } // 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 png_saver::png_saver(std::ostream & stream, std::string const& t): stream_(stream), t_(t) {} png_saver_pal::png_saver_pal(std::ostream & stream, std::string const& t, rgba_palette const& pal): stream_(stream), t_(t), pal_(pal) {} template<> void png_saver::operator() (image_data_null const& image) const { throw ImageWriterException("null images not supported for png"); } template<> void png_saver_pal::operator() (image_data_null const& image) const { throw ImageWriterException("null images not supported for png"); } template void process_rgba8_png_pal(T const& image, std::string const& t, std::ostream & stream, rgba_palette const& pal) { #if defined(HAVE_PNG) png_options opts; handle_png_options(t, opts); if (pal.valid()) { png_options opts; handle_png_options(t,opts); save_as_png8_pal(stream, image, pal, opts); } else 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 } template void process_rgba8_png(T const& image, std::string const& t, std::ostream & stream) { #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 } template<> void png_saver_pal::operator() (image_data_rgba8 const& image) const { process_rgba8_png_pal(image, t_, stream_, pal_); } template<> void png_saver_pal::operator() (image_view_rgba8 const& image) const { process_rgba8_png_pal(image, t_, stream_, pal_); } template<> void png_saver::operator() (image_data_rgba8 const& image) const { process_rgba8_png(image, t_, stream_); } template<> void png_saver::operator() (image_view_rgba8 const& image) const { process_rgba8_png(image, t_, stream_); } template void png_saver::operator() (T const& image) const { #if defined(HAVE_PNG) throw ImageWriterException("Mapnik does not support grayscale images for png"); //png_options opts; //handle_png_options(t_, opts); //save_as_png(stream_, image, opts); #else throw ImageWriterException("png output is not enabled in your build of Mapnik"); #endif } template void png_saver_pal::operator() (T const& image) const { #if defined(HAVE_PNG) throw ImageWriterException("Mapnik does not support grayscale images for png"); //png_options opts; //handle_png_options(t_, opts); //save_as_png(stream_, image, opts); #else throw ImageWriterException("png output is not enabled in your build of Mapnik"); #endif } template void png_saver::operator() (image_data_gray8 const& image) const; template void png_saver::operator() (image_data_gray16 const& image) const; template void png_saver::operator() (image_data_gray32f const& image) const; template void png_saver::operator() (image_view_gray8 const& image) const; template void png_saver::operator() (image_view_gray16 const& image) const; template void png_saver::operator() (image_view_gray32f const& image) const; template void png_saver_pal::operator() (image_data_gray8 const& image) const; template void png_saver_pal::operator() (image_data_gray16 const& image) const; template void png_saver_pal::operator() (image_data_gray32f const& image) const; template void png_saver_pal::operator() (image_view_gray8 const& image) const; template void png_saver_pal::operator() (image_view_gray16 const& image) const; template void png_saver_pal::operator() (image_view_gray32f const& image) const; } // end ns