qpdf/examples/qpdf-job.cc

123 lines
2.7 KiB
C++
Raw Normal View History

2022-01-26 20:46:28 +00:00
#include <qpdf/QPDFJob.hh>
#include <qpdf/QUtil.hh>
#include <qpdf/QIntC.hh>
2022-01-26 20:46:28 +00:00
#include <iostream>
#include <cstring>
// This program is a simple demonstration of different ways to use the
// QPDFJob API.
2022-01-26 20:46:28 +00:00
static char const* whoami = 0;
static void usage()
2022-01-26 20:46:28 +00:00
{
std::cerr
<< "Usage: " << whoami << std::endl
<< "This program linearizes the first page of in.pdf to out1.pdf,"
<< " out2.pdf, and"
<< std::endl
<< " out3.pdf, each demonstrating a different way to use the"
<< " QPDFJob API"
<< std::endl;
2022-01-26 20:46:28 +00:00
exit(2);
}
int main(int argc, char* argv[])
{
whoami = QUtil::getWhoami(argv[0]);
// For libtool's sake....
if (strncmp(whoami, "lt-", 3) == 0)
{
whoami += 3;
}
if (argc != 1)
{
usage();
}
// The examples below all catch std::exception. Note that
// QPDFUsage can be caught separately to report on errors in using
// the API itself. For CLI, this is command-line usage. For JSON
// or the API, it would be errors from the equivalent invocation.
// Note that staticId is used for testing only.
2022-01-26 20:46:28 +00:00
try
{
// Use the config API
2022-01-26 20:46:28 +00:00
QPDFJob j;
j.config()
->inputFile("in.pdf")
->outputFile("out1.pdf")
2022-01-26 20:46:28 +00:00
->pages()
->pageSpec(".", "1")
2022-01-26 20:46:28 +00:00
->endPages()
->linearize()
->staticId() // for testing only
->checkConfiguration();
2022-01-26 20:46:28 +00:00
j.run();
std::cout << "out1 status: " << j.getExitCode() << std::endl;
}
catch (std::exception& e)
{
std::cerr << "exception: " << e.what() << std::endl;
return 2;
}
try
{
char const* new_argv[] = {
whoami,
"in.pdf",
"out2.pdf",
"--linearize",
"--pages",
".",
"1",
"--",
"--static-id",
nullptr
};
QPDFJob j;
j.initializeFromArgv(9, new_argv);
j.run();
std::cout << "out2 status: " << j.getExitCode() << std::endl;
2022-01-26 20:46:28 +00:00
}
catch (std::exception& e)
{
std::cerr << "exception: " << e.what() << std::endl;
return 2;
}
try
{
// Use the JSON API
QPDFJob j;
j.initializeFromJson(R"({
"inputFile": "in.pdf",
"outputFile": "out3.pdf",
"staticId": "",
"linearize": "",
"pages": [
{
"file": ".",
"range": "1"
}
]
}
)");
j.run();
std::cout << "out3 status: " << j.getExitCode() << std::endl;
}
catch (std::exception& e)
{
std::cerr << "exception: " << e.what() << std::endl;
return 2;
}
2022-01-26 20:46:28 +00:00
return 0;
}