2008-04-29 12:55:25 +00:00
|
|
|
#include <qpdf/Pl_LZWDecoder.hh>
|
|
|
|
|
|
|
|
#include <qpdf/Pl_StdioFile.hh>
|
2009-07-12 22:52:13 +00:00
|
|
|
#include <qpdf/QUtil.hh>
|
2008-04-29 12:55:25 +00:00
|
|
|
#include <iostream>
|
2008-05-04 16:02:53 +00:00
|
|
|
#include <stdlib.h>
|
2009-02-20 02:27:36 +00:00
|
|
|
#include <string.h>
|
2008-04-29 12:55:25 +00:00
|
|
|
|
2009-02-20 02:27:36 +00:00
|
|
|
int main(int argc, char* argv[])
|
2008-04-29 12:55:25 +00:00
|
|
|
{
|
2009-02-20 02:27:36 +00:00
|
|
|
bool early_code_change = true;
|
2009-07-12 22:52:13 +00:00
|
|
|
if ((argc == 4) && (strcmp(argv[3], "--no-early-code-change") == 0))
|
2009-02-20 02:27:36 +00:00
|
|
|
{
|
|
|
|
early_code_change = false;
|
|
|
|
}
|
|
|
|
|
2009-07-12 22:52:13 +00:00
|
|
|
if (argc < 3)
|
|
|
|
{
|
|
|
|
std::cerr << "Usage: lzw infile outfile [ --no-early-code-change ]"
|
|
|
|
<< std::endl;
|
|
|
|
exit(2);
|
|
|
|
}
|
2008-04-29 12:55:25 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2009-07-12 22:52:13 +00:00
|
|
|
char* infilename = argv[1];
|
|
|
|
char* outfilename = argv[2];
|
|
|
|
|
2013-02-28 21:45:11 +00:00
|
|
|
FILE* infile = QUtil::safe_fopen(infilename, "rb");
|
|
|
|
FILE* outfile = QUtil::safe_fopen(outfilename, "wb");
|
2009-07-12 22:52:13 +00:00
|
|
|
|
|
|
|
Pl_StdioFile out("output", outfile);
|
|
|
|
Pl_LZWDecoder decode("decode", &out, early_code_change);
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
unsigned char buf[10000];
|
|
|
|
bool done = false;
|
|
|
|
while (! done)
|
|
|
|
{
|
2012-06-20 15:20:57 +00:00
|
|
|
size_t len = fread(buf, 1, sizeof(buf), infile);
|
2008-04-29 12:55:25 +00:00
|
|
|
if (len <= 0)
|
|
|
|
{
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
decode.write(buf, len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
decode.finish();
|
|
|
|
}
|
|
|
|
catch (std::exception& e)
|
|
|
|
{
|
|
|
|
std::cerr << e.what() << std::endl;
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|