2010-06-03 23:24:58 +02:00
|
|
|
/*****************************************************************************
|
2012-02-02 02:53:35 +01:00
|
|
|
*
|
2010-06-03 23:24:58 +02:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2011-10-23 15:04:25 +02:00
|
|
|
* Copyright (C) 2011 Artem Pavlenko
|
2010-06-03 23:24:58 +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,
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
// mapnik
|
|
|
|
#include <mapnik/image_reader.hpp>
|
|
|
|
#include <mapnik/color.hpp>
|
2012-12-17 03:19:52 +01:00
|
|
|
#include <mapnik/noncopyable.hpp>
|
2010-06-03 23:24:58 +02:00
|
|
|
|
|
|
|
// jpeg
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#include <jpeglib.h>
|
|
|
|
}
|
|
|
|
|
2010-06-04 00:43:25 +02:00
|
|
|
// boost
|
2010-06-03 23:24:58 +02:00
|
|
|
#include <boost/scoped_array.hpp>
|
|
|
|
|
2011-11-08 19:34:00 +01:00
|
|
|
// std
|
|
|
|
#include <cstdio>
|
2010-06-04 00:43:25 +02:00
|
|
|
|
2010-06-03 23:24:58 +02:00
|
|
|
namespace mapnik
|
|
|
|
{
|
2012-12-17 03:19:52 +01:00
|
|
|
class JpegReader : public image_reader, mapnik::noncopyable
|
2012-02-02 02:53:35 +01:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
std::string fileName_;
|
|
|
|
unsigned width_;
|
|
|
|
unsigned height_;
|
2013-03-26 02:29:29 +01:00
|
|
|
jpeg_decompress_struct cinfo;
|
|
|
|
jpeg_error_mgr jerr;
|
|
|
|
FILE *fp;
|
2012-02-02 02:53:35 +01:00
|
|
|
public:
|
2012-09-03 19:27:48 +02:00
|
|
|
explicit JpegReader(std::string const& fileName);
|
2012-02-02 02:53:35 +01:00
|
|
|
~JpegReader();
|
|
|
|
unsigned width() const;
|
|
|
|
unsigned height() const;
|
2012-10-05 01:07:24 +02:00
|
|
|
inline bool premultiplied_alpha() const { return true; }
|
2012-02-02 02:53:35 +01:00
|
|
|
void read(unsigned x,unsigned y,image_data_32& image);
|
|
|
|
private:
|
|
|
|
void init();
|
2013-03-26 02:29:29 +01:00
|
|
|
static void on_error(j_common_ptr cinfo);
|
|
|
|
static void on_error_message(j_common_ptr cinfo);
|
2012-02-02 02:53:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2012-09-03 19:27:48 +02:00
|
|
|
image_reader* createJpegReader(std::string const& file)
|
2012-02-02 02:53:35 +01:00
|
|
|
{
|
|
|
|
return new JpegReader(file);
|
|
|
|
}
|
|
|
|
const bool registered = register_image_reader("jpeg",createJpegReader);
|
|
|
|
}
|
2010-06-03 23:24:58 +02:00
|
|
|
|
2012-09-03 19:27:48 +02:00
|
|
|
JpegReader::JpegReader(std::string const& fileName)
|
2012-02-02 02:53:35 +01:00
|
|
|
: fileName_(fileName),
|
|
|
|
width_(0),
|
2013-03-26 02:29:29 +01:00
|
|
|
height_(0),
|
|
|
|
fp(NULL)
|
2012-02-02 02:53:35 +01:00
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
2010-06-03 23:24:58 +02:00
|
|
|
|
2013-03-26 02:29:29 +01:00
|
|
|
JpegReader::~JpegReader() {
|
|
|
|
if (fp)
|
|
|
|
{
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
jpeg_destroy_decompress(&cinfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
void JpegReader::on_error(j_common_ptr cinfo)
|
|
|
|
{
|
|
|
|
(*cinfo->err->output_message)(cinfo);
|
|
|
|
jpeg_destroy(cinfo);
|
|
|
|
throw image_reader_exception("JPEG Reader: libjpeg could not read image");
|
|
|
|
}
|
|
|
|
|
|
|
|
void JpegReader::on_error_message(j_common_ptr cinfo)
|
|
|
|
{
|
|
|
|
// used to supress jpeg from printing to stderr
|
|
|
|
}
|
2010-06-03 23:24:58 +02:00
|
|
|
|
2012-02-02 02:53:35 +01:00
|
|
|
void JpegReader::init()
|
|
|
|
{
|
2013-03-26 02:29:29 +01:00
|
|
|
fp = fopen(fileName_.c_str(),"rb");
|
2012-02-02 02:53:35 +01:00
|
|
|
if (!fp) throw image_reader_exception("JPEG Reader: cannot open image file " + fileName_);
|
2010-06-03 23:24:58 +02:00
|
|
|
|
2012-02-02 02:53:35 +01:00
|
|
|
cinfo.err = jpeg_std_error(&jerr);
|
2013-03-26 02:29:29 +01:00
|
|
|
jerr.error_exit = on_error;
|
|
|
|
jerr.output_message = on_error_message;
|
2012-02-02 02:53:35 +01:00
|
|
|
jpeg_create_decompress(&cinfo);
|
|
|
|
jpeg_stdio_src(&cinfo, fp);
|
|
|
|
jpeg_read_header(&cinfo, TRUE);
|
|
|
|
jpeg_start_decompress(&cinfo);
|
|
|
|
width_ = cinfo.output_width;
|
|
|
|
height_ = cinfo.output_height;
|
|
|
|
// if enabled: "Application transferred too few scanlines"
|
|
|
|
//jpeg_finish_decompress(&cinfo);
|
|
|
|
jpeg_destroy_decompress(&cinfo);
|
|
|
|
fclose(fp);
|
|
|
|
}
|
2010-06-03 23:24:58 +02:00
|
|
|
|
2012-02-02 02:53:35 +01:00
|
|
|
unsigned JpegReader::width() const
|
|
|
|
{
|
|
|
|
return width_;
|
|
|
|
}
|
2010-06-03 23:24:58 +02:00
|
|
|
|
2012-02-02 02:53:35 +01:00
|
|
|
unsigned JpegReader::height() const
|
|
|
|
{
|
|
|
|
return height_;
|
|
|
|
}
|
2010-06-03 23:24:58 +02:00
|
|
|
|
2012-02-02 02:53:35 +01:00
|
|
|
void JpegReader::read(unsigned x0, unsigned y0, image_data_32& image)
|
|
|
|
{
|
2013-03-26 02:29:29 +01:00
|
|
|
fp = fopen(fileName_.c_str(),"rb");
|
2012-02-02 02:53:35 +01:00
|
|
|
if (!fp) throw image_reader_exception("JPEG Reader: cannot open image file " + fileName_);
|
|
|
|
|
|
|
|
cinfo.err = jpeg_std_error(&jerr);
|
2010-06-03 23:24:58 +02:00
|
|
|
|
2012-02-02 02:53:35 +01:00
|
|
|
jpeg_create_decompress(&cinfo);
|
|
|
|
jpeg_stdio_src(&cinfo, fp);
|
|
|
|
|
|
|
|
jpeg_read_header(&cinfo, TRUE);
|
|
|
|
if (cinfo.out_color_space == JCS_UNKNOWN)
|
|
|
|
throw image_reader_exception("JPEG Reader: failed to read unknown color space in " + fileName_);
|
|
|
|
|
|
|
|
jpeg_start_decompress(&cinfo);
|
|
|
|
|
|
|
|
if (cinfo.output_width == 0) {
|
|
|
|
jpeg_destroy_decompress (&cinfo);
|
|
|
|
throw image_reader_exception("JPEG Reader: failed to read image size of " + fileName_);
|
|
|
|
}
|
|
|
|
|
|
|
|
JSAMPARRAY buffer;
|
|
|
|
int row_stride;
|
|
|
|
unsigned char a,r,g,b;
|
|
|
|
row_stride = cinfo.output_width * cinfo.output_components;
|
|
|
|
buffer = (*cinfo.mem->alloc_sarray) ((j_common_ptr) &cinfo, JPOOL_IMAGE, row_stride, 1);
|
|
|
|
|
|
|
|
unsigned w = std::min(unsigned(image.width()),width_);
|
|
|
|
unsigned h = std::min(unsigned(image.height()),height_);
|
|
|
|
|
|
|
|
boost::scoped_array<unsigned int> out_row(new unsigned int[w]);
|
|
|
|
// TODO - handle x0
|
|
|
|
for (unsigned i=0;i<h;++i)
|
|
|
|
{
|
|
|
|
jpeg_read_scanlines(&cinfo, buffer, 1);
|
|
|
|
if (i>=y0 && i<h)
|
2010-06-03 23:24:58 +02:00
|
|
|
{
|
2012-02-02 02:53:35 +01:00
|
|
|
for (unsigned int x=0; x<w; x++)
|
2010-06-03 23:24:58 +02:00
|
|
|
{
|
2012-02-02 02:53:35 +01:00
|
|
|
a = 255; // alpha not supported in jpg
|
|
|
|
r = buffer[0][cinfo.output_components * x];
|
|
|
|
if (cinfo.output_components > 2)
|
2010-06-03 23:24:58 +02:00
|
|
|
{
|
2012-02-02 02:53:35 +01:00
|
|
|
g = buffer[0][cinfo.output_components*x+1];
|
|
|
|
b = buffer[0][cinfo.output_components*x+2];
|
|
|
|
} else {
|
|
|
|
g = r;
|
|
|
|
b = r;
|
2010-06-03 23:24:58 +02:00
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
out_row[x] = color(r, g, b, a).rgba();
|
|
|
|
}
|
|
|
|
image.setRow(i-y0, out_row.get(), w);
|
2010-06-03 23:24:58 +02:00
|
|
|
}
|
|
|
|
}
|
2012-02-02 02:53:35 +01:00
|
|
|
jpeg_finish_decompress(&cinfo);
|
|
|
|
jpeg_destroy_decompress(&cinfo);
|
|
|
|
}
|
2010-06-03 23:24:58 +02:00
|
|
|
}
|