mapnik/src/image_util.cpp

80 lines
2.8 KiB
C++
Raw Normal View History

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
*
2006-03-31 12:32:02 +02:00
* Copyright (C) 2006 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
//$Id: image_util.cpp 36 2005-04-05 14:32:18Z pavlenko $
// mapnik
2007-10-08 19:42:41 +02:00
#include <mapnik/image_util.hpp>
#include <mapnik/png_io.hpp>
#include <mapnik/jpeg_io.hpp>
#include <mapnik/graphics.hpp>
#include <mapnik/memory.hpp>
#include <mapnik/image_view.hpp>
2005-06-14 17:06:59 +02:00
2007-10-08 19:42:41 +02:00
// stl
#include <string>
#include <iostream>
#include <fstream>
2007-10-08 19:42:41 +02:00
2005-06-14 17:06:59 +02:00
namespace mapnik
{
template <typename T>
void save_to_file(std::string const& filename,
std::string const& type,
T const& image)
{
std::ofstream file (filename.c_str(), std::ios::out| std::ios::trunc|std::ios::binary);
if (file)
{
//all this should go into image_writer factory
if (type=="png") save_as_png(file,image);
else if (type == "png256") save_as_png256(file,image);
else if (type=="jpeg") save_as_jpeg(file,85,image);
else throw ImageWriterException("unknown file type: " + type);
}
}
template <typename T>
void save_to_file(std::string const& filename,
T const& image)
{
std::string type = type_from_filename(filename);
save_to_file<T>(filename,type,image);
}
2005-06-14 17:06:59 +02:00
template void save_to_file<ImageData32>(std::string const&,
std::string const&,
ImageData32 const&);
template void save_to_file<ImageData32>(std::string const&,
ImageData32 const&);
template void save_to_file<image_view<ImageData32> > (std::string const&,
std::string const&,
image_view<ImageData32> const&);
template void save_to_file<image_view<ImageData32> > (std::string const&,
image_view<ImageData32> const&);
2005-06-14 17:06:59 +02:00
}