/* This file is part of Mapnik (c++ mapping toolkit) * Copyright (C) 2005 Artem Pavlenko * * Mapnik is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ //$Id: tiff_reader.cpp 17 2005-03-08 23:58:43Z pavlenko $ #include "image_reader.hpp" #include #include namespace mapnik { using std::min; using std::max; class TiffReader : public ImageReader { private: std::string file_name_; int read_method_; unsigned width_; unsigned height_; int rows_per_strip_; int tile_width_; int tile_height_; public: enum { generic=1, stripped, tiled }; explicit TiffReader(const std::string& file_name); virtual ~TiffReader(); unsigned width() const; unsigned height() const; void read(unsigned x,unsigned y,ImageData32& image); private: TiffReader(const TiffReader&); TiffReader& operator=(const TiffReader&); void init(); void read_generic(unsigned x,unsigned y,ImageData32& image); void read_stripped(unsigned x,unsigned y,ImageData32& image); void read_tiled(unsigned x,unsigned y,ImageData32& image); }; namespace { ImageReader* createTiffReader(const std::string& file) { return new TiffReader(file); } const bool registered = register_image_reader("tiff",createTiffReader); } TiffReader::TiffReader(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) { try { init(); } catch (ImageReaderException& ex) { std::clog<=n0;--n) { image.setRow(row,tx0-x0,tx1-x0,(const unsigned*)&buf[n*tile_width_+tx0-x]); ++row; } } } _TIFFfree(buf); TIFFClose(tif); } } void TiffReader::read_stripped(unsigned x0,unsigned y0,ImageData32& image) { TIFF* tif = TIFFOpen(file_name_.c_str(), "r"); if (tif) { uint32* buf = (uint32*)_TIFFmalloc(width_*rows_per_strip_*sizeof(uint32)); int width=image.width(); int height=image.height(); 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; tx0=x0; tx1=min(width+x0,(unsigned)width_); 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; if (!TIFFReadRGBAStrip(tif,y,buf)) break; row=y+ty0-y0; 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; } } _TIFFfree(buf); TIFFClose(tif); } } }