2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-31 17:30:54 +00:00
qpdf/libtests/png_filter.cc

81 lines
1.8 KiB
C++
Raw Normal View History

#include <qpdf/Pl_PNGFilter.hh>
#include <qpdf/Pl_StdioFile.hh>
#include <qpdf/QUtil.hh>
#include <iostream>
#include <errno.h>
#include <assert.h>
#include <string.h>
#include <stdlib.h>
2017-12-25 15:27:45 +00:00
void run(char const* filename, bool encode, unsigned int columns,
int bits_per_sample, int samples_per_pixel)
{
// Decode the file
FILE* in = QUtil::safe_fopen(filename, "rb");
FILE* o1 = QUtil::safe_fopen("out", "wb");
Pipeline* out = new Pl_StdioFile("out", o1);
Pipeline* pl = new Pl_PNGFilter(
"png", out,
encode ? Pl_PNGFilter::a_encode : Pl_PNGFilter::a_decode,
2017-12-25 15:27:45 +00:00
columns, samples_per_pixel, bits_per_sample);
assert((2 * (columns + 1)) < 1024);
unsigned char buf[1024];
size_t len;
while (true)
{
len = fread(buf, 1, (2 * columns) + 1, in);
if (len == 0)
{
break;
}
pl->write(buf, len);
len = fread(buf, 1, 1, in);
if (len == 0)
{
break;
}
pl->write(buf, len);
len = fread(buf, 1, 1, in);
if (len == 0)
{
break;
}
pl->write(buf, len);
}
pl->finish();
delete pl;
delete out;
fclose(o1);
fclose(in);
std::cout << "done" << std::endl;
}
int main(int argc, char* argv[])
{
2017-12-25 15:27:45 +00:00
if (argc != 6)
{
2017-12-25 15:27:45 +00:00
std::cerr << "Usage: png_filter {en,de}code filename"
<< " columns samples-per-pixel bits-per-sample"
<< std::endl;
exit(2);
}
bool encode = (strcmp(argv[1], "encode") == 0);
char* filename = argv[2];
int columns = QUtil::string_to_int(argv[3]);
2017-12-25 15:27:45 +00:00
int samples_per_pixel = QUtil::string_to_int(argv[4]);
int bits_per_sample = QUtil::string_to_int(argv[5]);
try
{
2017-12-25 15:27:45 +00:00
run(filename, encode, columns, bits_per_sample, samples_per_pixel);
}
catch (std::exception& e)
{
std::cout << e.what() << std::endl;
}
return 0;
}