2023-05-20 11:22:32 +00:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstring>
|
2008-04-29 12:55:25 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <qpdf/QPDF.hh>
|
2009-07-15 04:26:32 +00:00
|
|
|
#include <qpdf/QUtil.hh>
|
2008-04-29 12:55:25 +00:00
|
|
|
|
2022-07-26 11:37:50 +00:00
|
|
|
static char const* whoami = nullptr;
|
2008-04-29 12:55:25 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
usage()
|
|
|
|
{
|
|
|
|
std::cerr << "Usage: " << whoami << " filename" << std::endl
|
2022-02-08 14:18:08 +00:00
|
|
|
<< "Prints the number of pages in filename" << std::endl;
|
2008-04-29 12:55:25 +00:00
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char* argv[])
|
|
|
|
{
|
2009-07-15 04:26:32 +00:00
|
|
|
whoami = QUtil::getWhoami(argv[0]);
|
|
|
|
|
2008-04-29 12:55:25 +00:00
|
|
|
if ((argc == 2) && (strcmp(argv[1], "--version") == 0)) {
|
2022-02-08 14:18:08 +00:00
|
|
|
std::cout << whoami << " version 1.3" << std::endl;
|
|
|
|
exit(0);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (argc != 2) {
|
2022-02-08 14:18:08 +00:00
|
|
|
usage();
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
char const* filename = argv[1];
|
|
|
|
|
|
|
|
try {
|
2022-02-08 14:18:08 +00:00
|
|
|
QPDF pdf;
|
|
|
|
pdf.processFile(filename);
|
|
|
|
QPDFObjectHandle root = pdf.getRoot();
|
|
|
|
QPDFObjectHandle pages = root.getKey("/Pages");
|
|
|
|
QPDFObjectHandle count = pages.getKey("/Count");
|
|
|
|
std::cout << count.getIntValue() << std::endl;
|
2008-04-29 12:55:25 +00:00
|
|
|
} catch (std::exception& e) {
|
2022-02-08 14:18:08 +00:00
|
|
|
std::cerr << whoami << ": " << e.what() << std::endl;
|
|
|
|
exit(2);
|
2008-04-29 12:55:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|