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
|
|
|
*
|
2011-10-23 15:04:25 +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
|
|
|
|
2006-10-04 13:22:18 +02:00
|
|
|
// mapnik
|
2012-04-08 02:20:56 +02:00
|
|
|
#include <mapnik/debug.hpp>
|
2006-10-04 13:22:18 +02:00
|
|
|
#include <mapnik/image_reader.hpp>
|
2012-09-24 14:35:22 +02:00
|
|
|
// boost
|
|
|
|
#include <boost/shared_ptr.hpp>
|
2009-12-16 21:02:06 +01:00
|
|
|
#include <boost/filesystem/operations.hpp>
|
|
|
|
|
2012-02-02 02:53:35 +01:00
|
|
|
extern "C"
|
2006-08-31 23:32:07 +02:00
|
|
|
{
|
2012-02-02 02:53:35 +01:00
|
|
|
#include <tiffio.h>
|
2006-08-31 23:32:07 +02:00
|
|
|
}
|
|
|
|
|
2012-02-02 02:53:35 +01:00
|
|
|
namespace mapnik
|
2005-06-14 17:06:59 +02:00
|
|
|
{
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
using std::min;
|
|
|
|
using std::max;
|
2006-04-05 10:27:45 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
class tiff_reader : public image_reader
|
|
|
|
{
|
2012-09-24 14:35:22 +02:00
|
|
|
typedef boost::shared_ptr<TIFF> tiff_ptr;
|
|
|
|
struct tiff_closer
|
|
|
|
{
|
|
|
|
void operator() (TIFF * tif)
|
|
|
|
{
|
|
|
|
if (tif != 0)
|
|
|
|
{
|
|
|
|
TIFFClose(tif);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
private:
|
|
|
|
std::string file_name_;
|
|
|
|
int read_method_;
|
|
|
|
unsigned width_;
|
|
|
|
unsigned height_;
|
|
|
|
int rows_per_strip_;
|
|
|
|
int tile_width_;
|
|
|
|
int tile_height_;
|
2012-09-24 14:35:22 +02:00
|
|
|
tiff_ptr tif_;
|
2012-09-28 17:37:21 +02:00
|
|
|
bool premultiplied_alpha_;
|
2010-06-02 13:03:30 +02:00
|
|
|
public:
|
|
|
|
enum TiffType {
|
|
|
|
generic=1,
|
|
|
|
stripped,
|
|
|
|
tiled
|
2005-06-14 17:06:59 +02:00
|
|
|
};
|
2012-09-03 19:27:48 +02:00
|
|
|
explicit tiff_reader(std::string const& file_name);
|
2010-06-02 13:03:30 +02:00
|
|
|
virtual ~tiff_reader();
|
|
|
|
unsigned width() const;
|
|
|
|
unsigned height() const;
|
2012-09-28 17:37:21 +02:00
|
|
|
bool premultiplied_alpha() const;
|
2010-06-02 13:03:30 +02:00
|
|
|
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);
|
2012-09-03 19:27:48 +02:00
|
|
|
TIFF* load_if_exists(std::string const& filename);
|
2010-06-02 13:03:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2012-09-03 19:27:48 +02:00
|
|
|
image_reader* create_tiff_reader(std::string const& file)
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
|
|
|
return new tiff_reader(file);
|
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
const bool registered = register_image_reader("tiff",create_tiff_reader);
|
|
|
|
}
|
|
|
|
|
2012-09-03 19:27:48 +02:00
|
|
|
tiff_reader::tiff_reader(std::string const& file_name)
|
2010-06-02 13:03:30 +02:00
|
|
|
: file_name_(file_name),
|
|
|
|
read_method_(generic),
|
|
|
|
width_(0),
|
|
|
|
height_(0),
|
|
|
|
rows_per_strip_(0),
|
|
|
|
tile_width_(0),
|
2012-09-28 17:37:21 +02:00
|
|
|
tile_height_(0),
|
|
|
|
premultiplied_alpha_(false)
|
2010-06-02 13:03:30 +02:00
|
|
|
{
|
|
|
|
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_);
|
2012-06-21 02:03:08 +02:00
|
|
|
if (!tif) throw image_reader_exception( std::string("Can't load tiff file: '") + file_name_ + "'");
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
char msg[1024];
|
2012-02-02 02:53:35 +01: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))
|
2006-04-05 10:27:45 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
TIFFGetField(tif, TIFFTAG_TILEWIDTH, &tile_width_);
|
|
|
|
TIFFGetField(tif, TIFFTAG_TILELENGTH, &tile_height_);
|
|
|
|
read_method_=tiled;
|
2006-04-05 10:27:45 +02:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
else if (TIFFGetField(tif,TIFFTAG_ROWSPERSTRIP,&rows_per_strip_)!=0)
|
2006-04-05 10:27:45 +02:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
read_method_=stripped;
|
2006-04-05 10:27:45 +02:00
|
|
|
}
|
2012-09-28 17:37:21 +02:00
|
|
|
//TIFFTAG_EXTRASAMPLES
|
|
|
|
uint16 extrasamples;
|
|
|
|
uint16* sampleinfo;
|
|
|
|
TIFFGetFieldDefaulted(tif, TIFFTAG_EXTRASAMPLES,
|
|
|
|
&extrasamples, &sampleinfo);
|
|
|
|
if (extrasamples == 1 &&
|
|
|
|
sampleinfo[0] == EXTRASAMPLE_ASSOCALPHA)
|
|
|
|
{
|
|
|
|
premultiplied_alpha_ = true;
|
|
|
|
}
|
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
|
|
|
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_;
|
|
|
|
}
|
|
|
|
|
2012-09-28 17:37:21 +02:00
|
|
|
bool tiff_reader::premultiplied_alpha() const
|
|
|
|
{
|
|
|
|
return premultiplied_alpha_;
|
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
|
|
|
|
void tiff_reader::read(unsigned x,unsigned y,image_data_32& image)
|
2012-02-02 02:53:35 +01:00
|
|
|
{
|
2010-06-02 13:03:30 +02:00
|
|
|
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
|
|
|
|
|
|
|
|
2011-04-04 06:35:28 +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
|
|
|
{
|
2012-04-09 21:41:56 +02:00
|
|
|
MAPNIK_LOG_DEBUG(tiff_reader) << "tiff_reader: TODO - tiff is not stripped or tiled";
|
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();
|
2006-04-05 10:27:45 +02:00
|
|
|
|
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_;
|
2006-04-05 10:27:45 +02:00
|
|
|
|
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;
|
2006-04-05 10:27:45 +02:00
|
|
|
|
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;
|
2006-04-05 10:27:45 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
int n0=tile_height_-ty1;
|
|
|
|
int n1=tile_height_-ty0-1;
|
2006-04-05 10:27:45 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
for (int x=start_x;x<end_x;x+=tile_width_)
|
|
|
|
{
|
2006-04-05 10:27:45 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
if (!TIFFReadRGBATile(tif,x,y,buf)) break;
|
2006-04-05 10:27:45 +02:00
|
|
|
|
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;
|
2006-04-05 10:27:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
_TIFFfree(buf);
|
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));
|
2006-04-05 10:27:45 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
int width=image.width();
|
|
|
|
int height=image.height();
|
2006-04-05 10:27:45 +02:00
|
|
|
|
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;
|
2006-04-05 10:27:45 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
tx0=x0;
|
|
|
|
tx1=min(width+x0,(unsigned)width_);
|
2006-04-05 10:27:45 +02:00
|
|
|
|
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;
|
2006-04-05 10:27:45 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
if (!TIFFReadRGBAStrip(tif,y,buf)) break;
|
2006-04-05 10:27:45 +02:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
row=y+ty0-y0;
|
2006-04-05 10:27:45 +02:00
|
|
|
|
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;
|
2006-04-05 10:27:45 +02:00
|
|
|
}
|
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
_TIFFfree(buf);
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
2010-06-02 13:03:30 +02:00
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
|
2010-06-02 13:03:30 +02:00
|
|
|
TIFF* tiff_reader::load_if_exists(std::string const& filename)
|
|
|
|
{
|
2012-09-24 14:35:22 +02:00
|
|
|
if (!tif_)
|
2012-02-02 02:53:35 +01:00
|
|
|
{
|
2012-09-24 14:35:22 +02:00
|
|
|
boost::filesystem::path path(file_name_);
|
|
|
|
if (boost::filesystem::is_regular(path)) // exists and regular file
|
|
|
|
{
|
|
|
|
// File path is a full file path and does exist
|
|
|
|
tif_ = tiff_ptr(TIFFOpen(filename.c_str(), "rb"), tiff_closer());
|
|
|
|
}
|
2006-12-20 01:22:45 +01:00
|
|
|
}
|
2012-09-24 14:35:22 +02:00
|
|
|
return tif_.get();
|
2005-06-14 17:06:59 +02:00
|
|
|
}
|
|
|
|
|
2012-09-24 14:35:22 +02:00
|
|
|
} // namespace mapnik
|