2008-04-29 12:55:25 +00:00
|
|
|
#include <qpdf/Pl_PNGFilter.hh>
|
2017-12-25 15:27:45 +00:00
|
|
|
#include <qpdf/QTC.hh>
|
2009-09-26 18:36:04 +00:00
|
|
|
#include <stdexcept>
|
2008-04-29 12:55:25 +00:00
|
|
|
#include <string.h>
|
2017-08-31 11:26:58 +00:00
|
|
|
#include <limits.h>
|
2018-02-04 18:51:54 +00:00
|
|
|
|
|
|
|
static int abs_diff(int a, int b)
|
|
|
|
{
|
|
|
|
return a > b ? a - b : b - a;
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
|
|
|
|
Pl_PNGFilter::Pl_PNGFilter(char const* identifier, Pipeline* next,
|
|
|
|
action_e action, unsigned int columns,
|
2017-12-25 00:18:52 +00:00
|
|
|
unsigned int samples_per_pixel,
|
|
|
|
unsigned int bits_per_sample) :
|
2008-04-29 12:55:25 +00:00
|
|
|
Pipeline(identifier, next),
|
|
|
|
action(action),
|
|
|
|
cur_row(0),
|
|
|
|
prev_row(0),
|
|
|
|
buf1(0),
|
|
|
|
buf2(0),
|
|
|
|
pos(0)
|
|
|
|
{
|
2018-01-13 18:21:23 +00:00
|
|
|
if (samples_per_pixel < 1)
|
2017-12-25 00:18:52 +00:00
|
|
|
{
|
|
|
|
throw std::runtime_error(
|
2018-01-13 18:21:23 +00:00
|
|
|
"PNGFilter created with invalid samples_per_pixel");
|
2017-12-25 00:18:52 +00:00
|
|
|
}
|
|
|
|
if (! ((bits_per_sample == 1) ||
|
|
|
|
(bits_per_sample == 2) ||
|
|
|
|
(bits_per_sample == 4) ||
|
|
|
|
(bits_per_sample == 8) ||
|
|
|
|
(bits_per_sample == 16)))
|
|
|
|
{
|
|
|
|
throw std::runtime_error(
|
|
|
|
"PNGFilter created with invalid bits_per_sample not"
|
|
|
|
" 1, 2, 4, 8, or 16");
|
|
|
|
}
|
|
|
|
this->bytes_per_pixel = ((bits_per_sample * samples_per_pixel) + 7) / 8;
|
|
|
|
unsigned long long bpr =
|
|
|
|
((columns * bits_per_sample * samples_per_pixel) + 7) / 8;
|
|
|
|
if ((bpr == 0) || (bpr > (UINT_MAX - 1)))
|
2017-08-29 16:27:44 +00:00
|
|
|
{
|
2017-08-31 11:26:58 +00:00
|
|
|
throw std::runtime_error(
|
|
|
|
"PNGFilter created with invalid columns value");
|
2017-08-29 16:27:44 +00:00
|
|
|
}
|
2017-12-25 00:18:52 +00:00
|
|
|
this->bytes_per_row = bpr & UINT_MAX;
|
2019-06-22 18:24:49 +00:00
|
|
|
this->buf1 = PointerHolder<unsigned char>(
|
|
|
|
true, new unsigned char[this->bytes_per_row + 1]);
|
|
|
|
this->buf2 = PointerHolder<unsigned char>(
|
|
|
|
true, new unsigned char[this->bytes_per_row + 1]);
|
|
|
|
memset(this->buf1.getPointer(), 0, this->bytes_per_row + 1);
|
|
|
|
memset(this->buf2.getPointer(), 0, this->bytes_per_row + 1);
|
|
|
|
this->cur_row = this->buf1.getPointer();
|
|
|
|
this->prev_row = this->buf2.getPointer();
|
2008-04-29 12:55:25 +00:00
|
|
|
|
|
|
|
// number of bytes per incoming row
|
2017-12-25 00:18:52 +00:00
|
|
|
this->incoming = (action == a_encode ?
|
|
|
|
this->bytes_per_row :
|
|
|
|
this->bytes_per_row + 1);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Pl_PNGFilter::~Pl_PNGFilter()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-06-20 15:20:57 +00:00
|
|
|
Pl_PNGFilter::write(unsigned char* data, size_t len)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2012-06-20 15:20:57 +00:00
|
|
|
size_t left = this->incoming - this->pos;
|
|
|
|
size_t offset = 0;
|
2008-04-29 12:55:25 +00:00
|
|
|
while (len >= left)
|
|
|
|
{
|
|
|
|
// finish off current row
|
|
|
|
memcpy(this->cur_row + this->pos, data + offset, left);
|
|
|
|
offset += left;
|
|
|
|
len -= left;
|
|
|
|
|
|
|
|
processRow();
|
|
|
|
|
|
|
|
// Swap rows
|
|
|
|
unsigned char* t = this->prev_row;
|
|
|
|
this->prev_row = this->cur_row;
|
2019-06-22 18:24:49 +00:00
|
|
|
this->cur_row = t ? t : this->buf2.getPointer();
|
2017-12-25 00:18:52 +00:00
|
|
|
memset(this->cur_row, 0, this->bytes_per_row + 1);
|
2008-04-29 12:55:25 +00:00
|
|
|
left = this->incoming;
|
|
|
|
this->pos = 0;
|
|
|
|
}
|
|
|
|
if (len)
|
|
|
|
{
|
|
|
|
memcpy(this->cur_row + this->pos, data + offset, len);
|
|
|
|
}
|
|
|
|
this->pos += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Pl_PNGFilter::processRow()
|
|
|
|
{
|
|
|
|
if (this->action == a_encode)
|
|
|
|
{
|
|
|
|
encodeRow();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
decodeRow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Pl_PNGFilter::decodeRow()
|
|
|
|
{
|
2013-02-24 02:46:21 +00:00
|
|
|
int filter = this->cur_row[0];
|
2008-04-29 12:55:25 +00:00
|
|
|
if (this->prev_row)
|
|
|
|
{
|
2017-11-07 17:12:18 +00:00
|
|
|
switch (filter)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
this->decodeSub();
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
this->decodeUp();
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
this->decodeAverage();
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
this->decodePaeth();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// ignore
|
|
|
|
break;
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2017-12-25 00:18:52 +00:00
|
|
|
getNext()->write(this->cur_row + 1, this->bytes_per_row);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
2017-11-07 17:12:18 +00:00
|
|
|
void
|
|
|
|
Pl_PNGFilter::decodeSub()
|
|
|
|
{
|
2017-12-25 15:27:45 +00:00
|
|
|
QTC::TC("libtests", "Pl_PNGFilter decodeSub");
|
2017-11-07 17:12:18 +00:00
|
|
|
unsigned char* buffer = this->cur_row + 1;
|
2017-12-25 00:18:52 +00:00
|
|
|
unsigned int bpp = this->bytes_per_pixel;
|
2017-11-07 17:12:18 +00:00
|
|
|
|
2017-12-25 00:18:52 +00:00
|
|
|
for (unsigned int i = 0; i < this->bytes_per_row; ++i)
|
2017-11-07 17:12:18 +00:00
|
|
|
{
|
|
|
|
unsigned char left = 0;
|
|
|
|
|
|
|
|
if (i >= bpp)
|
|
|
|
{
|
|
|
|
left = buffer[i - bpp];
|
|
|
|
}
|
|
|
|
|
2019-06-21 03:35:23 +00:00
|
|
|
buffer[i] = static_cast<unsigned char>(buffer[i] + left);
|
2017-11-07 17:12:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Pl_PNGFilter::decodeUp()
|
|
|
|
{
|
2017-12-25 15:27:45 +00:00
|
|
|
QTC::TC("libtests", "Pl_PNGFilter decodeUp");
|
2017-11-07 17:12:18 +00:00
|
|
|
unsigned char* buffer = this->cur_row + 1;
|
|
|
|
unsigned char* above_buffer = this->prev_row + 1;
|
|
|
|
|
2017-12-25 00:18:52 +00:00
|
|
|
for (unsigned int i = 0; i < this->bytes_per_row; ++i)
|
2017-11-07 17:12:18 +00:00
|
|
|
{
|
|
|
|
unsigned char up = above_buffer[i];
|
2019-06-21 03:35:23 +00:00
|
|
|
buffer[i] = static_cast<unsigned char>(buffer[i] + up);
|
2017-11-07 17:12:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Pl_PNGFilter::decodeAverage()
|
|
|
|
{
|
2017-12-25 15:27:45 +00:00
|
|
|
QTC::TC("libtests", "Pl_PNGFilter decodeAverage");
|
2017-12-25 00:18:52 +00:00
|
|
|
unsigned char* buffer = this->cur_row + 1;
|
|
|
|
unsigned char* above_buffer = this->prev_row + 1;
|
|
|
|
unsigned int bpp = this->bytes_per_pixel;
|
2017-11-07 17:12:18 +00:00
|
|
|
|
2017-12-25 00:18:52 +00:00
|
|
|
for (unsigned int i = 0; i < this->bytes_per_row; ++i)
|
2017-11-07 17:12:18 +00:00
|
|
|
{
|
2017-12-25 00:18:52 +00:00
|
|
|
int left = 0;
|
|
|
|
int up = 0;
|
2017-11-07 17:12:18 +00:00
|
|
|
|
|
|
|
if (i >= bpp)
|
|
|
|
{
|
|
|
|
left = buffer[i - bpp];
|
|
|
|
}
|
|
|
|
|
|
|
|
up = above_buffer[i];
|
2019-06-21 03:35:23 +00:00
|
|
|
buffer[i] = static_cast<unsigned char>(buffer[i] + (left+up) / 2);
|
2017-11-07 17:12:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Pl_PNGFilter::decodePaeth()
|
|
|
|
{
|
2017-12-25 15:27:45 +00:00
|
|
|
QTC::TC("libtests", "Pl_PNGFilter decodePaeth");
|
2017-12-25 00:18:52 +00:00
|
|
|
unsigned char* buffer = this->cur_row + 1;
|
|
|
|
unsigned char* above_buffer = this->prev_row + 1;
|
|
|
|
unsigned int bpp = this->bytes_per_pixel;
|
2017-11-07 17:12:18 +00:00
|
|
|
|
2017-12-25 00:18:52 +00:00
|
|
|
for (unsigned int i = 0; i < this->bytes_per_row; ++i)
|
2017-11-07 17:12:18 +00:00
|
|
|
{
|
2017-12-25 00:18:52 +00:00
|
|
|
int left = 0;
|
|
|
|
int up = above_buffer[i];
|
|
|
|
int upper_left = 0;
|
2017-11-07 17:12:18 +00:00
|
|
|
|
|
|
|
if (i >= bpp)
|
|
|
|
{
|
|
|
|
left = buffer[i - bpp];
|
|
|
|
upper_left = above_buffer[i - bpp];
|
|
|
|
}
|
|
|
|
|
2019-06-21 03:35:23 +00:00
|
|
|
buffer[i] = static_cast<unsigned char>(
|
|
|
|
buffer[i] +
|
|
|
|
this->PaethPredictor(left, up, upper_left));
|
2017-11-07 17:12:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
Pl_PNGFilter::PaethPredictor(int a, int b, int c)
|
|
|
|
{
|
|
|
|
int p = a + b - c;
|
2018-02-04 18:51:54 +00:00
|
|
|
int pa = abs_diff(p, a);
|
|
|
|
int pb = abs_diff(p, b);
|
|
|
|
int pc = abs_diff(p, c);
|
2017-11-07 17:12:18 +00:00
|
|
|
|
2017-12-25 00:18:52 +00:00
|
|
|
if (pa <= pb && pa <= pc)
|
|
|
|
{
|
2017-11-07 17:12:18 +00:00
|
|
|
return a;
|
|
|
|
}
|
2017-12-25 00:18:52 +00:00
|
|
|
if (pb <= pc)
|
|
|
|
{
|
2017-11-07 17:12:18 +00:00
|
|
|
return b;
|
|
|
|
}
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
void
|
|
|
|
Pl_PNGFilter::encodeRow()
|
|
|
|
{
|
|
|
|
// For now, hard-code to using UP filter.
|
|
|
|
unsigned char ch = 2;
|
|
|
|
getNext()->write(&ch, 1);
|
|
|
|
if (this->prev_row)
|
|
|
|
{
|
2017-12-25 00:18:52 +00:00
|
|
|
for (unsigned int i = 0; i < this->bytes_per_row; ++i)
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2019-06-21 03:35:23 +00:00
|
|
|
ch = static_cast<unsigned char>(
|
|
|
|
this->cur_row[i] - this->prev_row[i]);
|
2008-04-29 12:55:25 +00:00
|
|
|
getNext()->write(&ch, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-12-25 00:18:52 +00:00
|
|
|
getNext()->write(this->cur_row, this->bytes_per_row);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Pl_PNGFilter::finish()
|
|
|
|
{
|
|
|
|
if (this->pos)
|
|
|
|
{
|
|
|
|
// write partial row
|
|
|
|
processRow();
|
|
|
|
}
|
|
|
|
this->prev_row = 0;
|
2019-06-22 18:24:49 +00:00
|
|
|
this->cur_row = buf1.getPointer();
|
2008-04-29 12:55:25 +00:00
|
|
|
this->pos = 0;
|
2017-12-25 00:18:52 +00:00
|
|
|
memset(this->cur_row, 0, this->bytes_per_row + 1);
|
2008-04-29 12:55:25 +00:00
|
|
|
|
|
|
|
getNext()->finish();
|
|
|
|
}
|