mapnik/src/tiff_reader.cpp

273 lines
6.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: tiff_reader.cpp 17 2005-03-08 23:58:43Z pavlenko $
// mapnik
#include <mapnik/image_reader.hpp>
2009-12-16 21:02:06 +01:00
#include <boost/filesystem/operations.hpp>
extern "C"
{
2010-06-02 13:03:30 +02:00
#include <tiffio.h>
}
2007-10-08 19:42:41 +02:00
// stl
#include <iostream>
2005-06-14 17:06:59 +02:00
namespace mapnik
{
2010-06-02 13:03:30 +02:00
using std::min;
using std::max;
2010-06-02 13:03:30 +02:00
class tiff_reader : public image_reader
{
private:
std::string file_name_;
int read_method_;
unsigned width_;
unsigned height_;
int rows_per_strip_;
int tile_width_;
int tile_height_;
public:
enum TiffType {
generic=1,
stripped,
tiled
2005-06-14 17:06:59 +02:00
};
2010-06-02 13:03:30 +02:00
explicit tiff_reader(const std::string& file_name);
virtual ~tiff_reader();
unsigned width() const;
unsigned height() const;
void read(unsigned x,unsigned y,image_data_32& image);
private:
tiff_reader(const tiff_reader&);
tiff_reader& operator=(const tiff_reader&);
void init();
void read_generic(unsigned x,unsigned y,image_data_32& image);
void read_stripped(unsigned x,unsigned y,image_data_32& image);
void read_tiled(unsigned x,unsigned y,image_data_32& image);
TIFF* load_if_exists(const std::string& filename);
};
namespace
{
image_reader* create_tiff_reader(const std::string& file)
{
return new tiff_reader(file);
}
2009-12-16 21:02:06 +01:00
2010-06-02 13:03:30 +02:00
const bool registered = register_image_reader("tiff",create_tiff_reader);
}
tiff_reader::tiff_reader(const std::string& file_name)
: file_name_(file_name),
read_method_(generic),
width_(0),
height_(0),
rows_per_strip_(0),
tile_width_(0),
tile_height_(0)
{
init();
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
void tiff_reader::init()
{
// TODO: error handling
TIFFSetWarningHandler(0);
TIFF* tif = load_if_exists(file_name_);
if (!tif) return;
char msg[1024];
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
if (TIFFRGBAImageOK(tif,msg))
2005-06-14 17:06:59 +02:00
{
2010-06-02 13:03:30 +02:00
TIFFGetField(tif, TIFFTAG_IMAGEWIDTH, &width_);
TIFFGetField(tif, TIFFTAG_IMAGELENGTH, &height_);
if (TIFFIsTiled(tif))
{
2010-06-02 13:03:30 +02:00
TIFFGetField(tif, TIFFTAG_TILEWIDTH, &tile_width_);
TIFFGetField(tif, TIFFTAG_TILELENGTH, &tile_height_);
read_method_=tiled;
}
2010-06-02 13:03:30 +02:00
else if (TIFFGetField(tif,TIFFTAG_ROWSPERSTRIP,&rows_per_strip_)!=0)
{
2010-06-02 13:03:30 +02:00
read_method_=stripped;
}
2010-06-02 13:03:30 +02:00
TIFFClose(tif);
2005-06-14 17:06:59 +02:00
}
2010-06-02 13:03:30 +02:00
else
2005-06-14 17:06:59 +02:00
{
2010-06-02 13:03:30 +02:00
TIFFClose(tif);
throw image_reader_exception(msg);
2005-06-14 17:06:59 +02:00
}
2010-06-02 13:03:30 +02:00
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
tiff_reader::~tiff_reader()
{
//
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
unsigned tiff_reader::width() const
{
return width_;
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
unsigned tiff_reader::height() const
{
return height_;
}
void tiff_reader::read(unsigned x,unsigned y,image_data_32& image)
{
if (read_method_==stripped)
{
read_stripped(x,y,image);
2005-06-14 17:06:59 +02:00
}
2010-06-02 13:03:30 +02:00
else if (read_method_==tiled)
{
read_tiled(x,y,image);
}
else
{
read_generic(x,y,image);
}
}
2005-06-14 17:06:59 +02:00
void tiff_reader::read_generic(unsigned /*x*/,unsigned /*y*/,image_data_32& /*image*/)
2010-06-02 13:03:30 +02:00
{
TIFF* tif = load_if_exists(file_name_);
if (tif)
2005-06-14 17:06:59 +02:00
{
2010-06-02 13:03:30 +02:00
std::clog << "TODO:tiff is not stripped or tiled\n";
TIFFClose(tif);
2005-06-14 17:06:59 +02:00
}
2010-06-02 13:03:30 +02:00
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
void tiff_reader::read_tiled(unsigned x0,unsigned y0,image_data_32& image)
{
TIFF* tif = load_if_exists(file_name_);
if (tif)
2005-06-14 17:06:59 +02:00
{
2010-06-02 13:03:30 +02:00
uint32* buf = (uint32*)_TIFFmalloc(tile_width_*tile_height_*sizeof(uint32));
int width=image.width();
int height=image.height();
2010-06-02 13:03:30 +02:00
int start_y=(y0/tile_height_)*tile_height_;
int end_y=((y0+height)/tile_height_+1)*tile_height_;
2010-06-02 13:03:30 +02:00
int start_x=(x0/tile_width_)*tile_width_;
int end_x=((x0+width)/tile_width_+1)*tile_width_;
int row,tx0,tx1,ty0,ty1;
2010-06-02 13:03:30 +02:00
for (int y=start_y;y<end_y;y+=tile_height_)
{
ty0 = max(y0,(unsigned)y) - y;
ty1 = min(height+y0,(unsigned)(y+tile_height_)) - y;
2010-06-02 13:03:30 +02:00
int n0=tile_height_-ty1;
int n1=tile_height_-ty0-1;
2010-06-02 13:03:30 +02:00
for (int x=start_x;x<end_x;x+=tile_width_)
{
2010-06-02 13:03:30 +02:00
if (!TIFFReadRGBATile(tif,x,y,buf)) break;
2010-06-02 13:03:30 +02:00
tx0=max(x0,(unsigned)x);
tx1=min(width+x0,(unsigned)(x+tile_width_));
row=y+ty0-y0;
for (int n=n1;n>=n0;--n)
{
image.setRow(row,tx0-x0,tx1-x0,(const unsigned*)&buf[n*tile_width_+tx0-x]);
++row;
}
}
}
2010-06-02 13:03:30 +02:00
_TIFFfree(buf);
TIFFClose(tif);
2005-06-14 17:06:59 +02:00
}
2010-06-02 13:03:30 +02:00
}
2005-06-14 17:06:59 +02:00
2010-06-02 13:03:30 +02:00
void tiff_reader::read_stripped(unsigned x0,unsigned y0,image_data_32& image)
{
TIFF* tif = load_if_exists(file_name_);
if (tif)
2005-06-14 17:06:59 +02:00
{
2010-06-02 13:03:30 +02:00
uint32* buf = (uint32*)_TIFFmalloc(width_*rows_per_strip_*sizeof(uint32));
2010-06-02 13:03:30 +02:00
int width=image.width();
int height=image.height();
2010-06-02 13:03:30 +02:00
unsigned start_y=(y0/rows_per_strip_)*rows_per_strip_;
unsigned end_y=((y0+height)/rows_per_strip_+1)*rows_per_strip_;
bool laststrip=((unsigned)end_y > height_)?true:false;
int row,tx0,tx1,ty0,ty1;
2010-06-02 13:03:30 +02:00
tx0=x0;
tx1=min(width+x0,(unsigned)width_);
2010-06-02 13:03:30 +02:00
for (unsigned y=start_y; y < end_y; y+=rows_per_strip_)
{
ty0 = max(y0,y)-y;
ty1 = min(height+y0,y+rows_per_strip_)-y;
2010-06-02 13:03:30 +02:00
if (!TIFFReadRGBAStrip(tif,y,buf)) break;
2010-06-02 13:03:30 +02:00
row=y+ty0-y0;
2010-06-02 13:03:30 +02:00
int n0=laststrip ? 0:(rows_per_strip_-ty1);
int n1=laststrip ? (ty1-ty0-1):(rows_per_strip_-ty0-1);
for (int n=n1;n>=n0;--n)
{
image.setRow(row,tx0-x0,tx1-x0,(const unsigned*)&buf[n*width_+tx0]);
++row;
}
}
2010-06-02 13:03:30 +02:00
_TIFFfree(buf);
TIFFClose(tif);
2005-06-14 17:06:59 +02:00
}
2010-06-02 13:03:30 +02:00
}
2010-06-02 13:03:30 +02:00
TIFF* tiff_reader::load_if_exists(std::string const& filename)
{
TIFF * tif = 0;
boost::filesystem::path path(file_name_);
if (exists(path)) // && is_regular(path)) { -- not supported in boost-1.33.*
{
// File path is a full file path and does exist
tif = TIFFOpen(filename.c_str(), "rb");
}
2010-06-02 13:03:30 +02:00
return tif;
}
2005-06-14 17:06:59 +02:00
}