]> www.fi.muni.cz Git - evince.git/blob - pdf/xpdf/pdfimages.cc
Synched with Xpdf 1.01
[evince.git] / pdf / xpdf / pdfimages.cc
1 //========================================================================
2 //
3 // pdfimages.cc
4 //
5 // Copyright 1998-2002 Glyph & Cog, LLC
6 //
7 //========================================================================
8
9 #include <aconf.h>
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <stddef.h>
13 #include <string.h>
14 #include "parseargs.h"
15 #include "GString.h"
16 #include "gmem.h"
17 #include "GlobalParams.h"
18 #include "Object.h"
19 #include "Stream.h"
20 #include "Array.h"
21 #include "Dict.h"
22 #include "XRef.h"
23 #include "Catalog.h"
24 #include "Page.h"
25 #include "PDFDoc.h"
26 #include "ImageOutputDev.h"
27 #include "Error.h"
28 #include "config.h"
29
30 static int firstPage = 1;
31 static int lastPage = 0;
32 static GBool dumpJPEG = gFalse;
33 static char ownerPassword[33] = "";
34 static char userPassword[33] = "";
35 static GBool quiet = gFalse;
36 static char cfgFileName[256] = "";
37 static GBool printVersion = gFalse;
38 static GBool printHelp = gFalse;
39
40 static ArgDesc argDesc[] = {
41   {"-f",      argInt,      &firstPage,     0,
42    "first page to convert"},
43   {"-l",      argInt,      &lastPage,      0,
44    "last page to convert"},
45   {"-j",      argFlag,     &dumpJPEG,      0,
46    "write JPEG images as JPEG files"},
47   {"-opw",    argString,   ownerPassword,  sizeof(ownerPassword),
48    "owner password (for encrypted files)"},
49   {"-upw",    argString,   userPassword,   sizeof(userPassword),
50    "user password (for encrypted files)"},
51   {"-q",      argFlag,     &quiet,         0,
52    "don't print any messages or errors"},
53   {"-cfg",        argString,      cfgFileName,    sizeof(cfgFileName),
54    "configuration file to use in place of .xpdfrc"},
55   {"-v",      argFlag,     &printVersion,  0,
56    "print copyright and version info"},
57   {"-h",      argFlag,     &printHelp,     0,
58    "print usage information"},
59   {"-help",   argFlag,     &printHelp,     0,
60    "print usage information"},
61   {"--help",  argFlag,     &printHelp,     0,
62    "print usage information"},
63   {"-?",      argFlag,     &printHelp,     0,
64    "print usage information"},
65   {NULL}
66 };
67
68 int main(int argc, char *argv[]) {
69   PDFDoc *doc;
70   GString *fileName;
71   char *imgRoot;
72   GString *ownerPW, *userPW;
73   ImageOutputDev *imgOut;
74   GBool ok;
75
76   // parse args
77   ok = parseArgs(argDesc, &argc, argv);
78   if (!ok || argc != 3 || printVersion || printHelp) {
79     fprintf(stderr, "pdfimages version %s\n", xpdfVersion);
80     fprintf(stderr, "%s\n", xpdfCopyright);
81     if (!printVersion) {
82       printUsage("pdfimages", "<PDF-file> <image-root>", argDesc);
83     }
84     exit(1);
85   }
86   fileName = new GString(argv[1]);
87   imgRoot = argv[2];
88
89   // read config file
90   globalParams = new GlobalParams(cfgFileName);
91   if (quiet) {
92     globalParams->setErrQuiet(quiet);
93   }
94
95   // open PDF file
96   if (ownerPassword[0]) {
97     ownerPW = new GString(ownerPassword);
98   } else {
99     ownerPW = NULL;
100   }
101   if (userPassword[0]) {
102     userPW = new GString(userPassword);
103   } else {
104     userPW = NULL;
105   }
106   doc = new PDFDoc(fileName, ownerPW, userPW);
107   if (userPW) {
108     delete userPW;
109   }
110   if (ownerPW) {
111     delete ownerPW;
112   }
113   if (!doc->isOk()) {
114     goto err;
115   }
116
117   // check for copy permission
118   if (!doc->okToCopy()) {
119     error(-1, "Copying of images from this document is not allowed.");
120     goto err;
121   }
122
123   // get page range
124   if (firstPage < 1)
125     firstPage = 1;
126   if (lastPage < 1 || lastPage > doc->getNumPages())
127     lastPage = doc->getNumPages();
128
129   // write image files
130   imgOut = new ImageOutputDev(imgRoot, dumpJPEG);
131   if (imgOut->isOk())
132     doc->displayPages(imgOut, firstPage, lastPage, 72, 0, gFalse);
133   delete imgOut;
134
135   // clean up
136  err:
137   delete doc;
138   delete globalParams;
139
140   // check for memory leaks
141   Object::memCheck(stderr);
142   gMemReport(stderr);
143
144   return 0;
145 }