mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
Merge pull request #70 from jahewson/master
new option --version: Enhanced version information
This commit is contained in:
commit
ca43b6ba4a
@ -12,6 +12,8 @@
|
||||
#include <iostream>
|
||||
#include <getopt.h>
|
||||
|
||||
#include <poppler-config.h>
|
||||
|
||||
#include <goo/GooString.h>
|
||||
|
||||
#include <Object.h>
|
||||
@ -24,6 +26,7 @@
|
||||
#include "HTMLRenderer/HTMLRenderer.h"
|
||||
#include "util/ArgParser.h"
|
||||
#include "util/path.h"
|
||||
#include "util/ffw.h"
|
||||
|
||||
using namespace std;
|
||||
using namespace pdf2htmlEX;
|
||||
@ -33,10 +36,6 @@ ArgParser argparser;
|
||||
|
||||
void show_usage_and_exit(const char * dummy = nullptr)
|
||||
{
|
||||
cerr << "pdftohtmlEX version " << PDF2HTMLEX_VERSION << endl;
|
||||
cerr << endl;
|
||||
cerr << "Copyright 2012 Lu Wang <coolwanglu@gmail.com>" << endl;
|
||||
cerr << endl;
|
||||
cerr << "Usage: pdf2htmlEX [Options] <input.pdf> [<output.html>]" << endl;
|
||||
cerr << endl;
|
||||
cerr << "Options:" << endl;
|
||||
@ -47,11 +46,21 @@ void show_usage_and_exit(const char * dummy = nullptr)
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
void show_version_and_exit(const char * dummy = nullptr)
|
||||
{
|
||||
cerr << "pdftohtmlEX version " << PDF2HTMLEX_VERSION << endl;
|
||||
cerr << "Copyright 2012 Lu Wang <coolwanglu@gmail.com>" << endl;
|
||||
cerr << "Libraries: ";
|
||||
cerr << "poppler " << POPPLER_VERSION << ", ";
|
||||
cerr << "libfontforge " << ffw_get_version() << endl;
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
void parse_options (int argc, char **argv)
|
||||
{
|
||||
argparser
|
||||
.add("help,h", "show all options", &show_usage_and_exit)
|
||||
.add("version,v", "show copyright and version info", &show_usage_and_exit)
|
||||
.add("version,v", "show copyright and version info", &show_version_and_exit)
|
||||
|
||||
.add("owner-password,o", ¶m.owner_password, "", "owner password (for encrypted files)", nullptr, true)
|
||||
.add("user-password,u", ¶m.user_password, "", "user password (for encrypted files)", nullptr, true)
|
||||
|
@ -400,3 +400,8 @@ void ffw_auto_hint(void)
|
||||
FVAutoHint(cur_fv);
|
||||
FVAutoInstr(cur_fv);
|
||||
}
|
||||
|
||||
long ffw_get_version(void)
|
||||
{
|
||||
return library_version_configuration.library_source_versiondate;
|
||||
}
|
@ -23,6 +23,7 @@ extern "C" {
|
||||
// global
|
||||
void ffw_init(int debug);
|
||||
void ffw_finalize(void);
|
||||
long ffw_get_version(void);
|
||||
|
||||
////////////////////////
|
||||
// load & save
|
||||
|
Loading…
Reference in New Issue
Block a user