]> mj.ucw.cz Git - paperjam.git/blob - pdf-tools.cc
Remember bounding boxes of page contents
[paperjam.git] / pdf-tools.cc
1 /*
2  *      Auxiliary functions for processing PDF files
3  *
4  *      (c) 2018 Martin Mares <mj@ucw.cz>
5  */
6
7 #include <cstdarg>
8 #include <cstdio>
9 #include <cstdlib>
10
11 #include <iconv.h>
12
13 using namespace std;
14
15 #include "pdf-tools.h"
16
17 #include <qpdf/QUtil.hh>
18 #include <qpdf/Pl_Concatenate.hh>
19
20 /*** Messages ***/
21
22 int debug_mode;
23 int debug_indent;
24
25 void debug(const char *msg, ...)
26 {
27         if (!debug_mode)
28                 return;
29         va_list args;
30         va_start(args, msg);
31         fprintf(stderr, "%*s", debug_indent, "");
32         vfprintf(stderr, msg, args);
33         fputc('\n', stderr);
34         va_end(args);
35 }
36
37 void warn(const char *msg, ...)
38 {
39         va_list args;
40         va_start(args, msg);
41         fprintf(stderr, "WARNING: ");
42         vfprintf(stderr, msg, args);
43         fputc('\n', stderr);
44         va_end(args);
45 }
46
47 void die(const char *msg, ...)
48 {
49         va_list args;
50         va_start(args, msg);
51         fprintf(stderr, "ERROR: ");
52         vfprintf(stderr, msg, args);
53         fputc('\n', stderr);
54         va_end(args);
55         exit(1);
56 }
57
58 void bad(const char *msg, ...)
59 {
60         va_list args;
61         va_start(args, msg);
62         char buf[1024];
63         vsnprintf(buf, sizeof(buf), msg, args);
64         va_end(args);
65
66         printf("error: %s\n", buf);
67         die("BAD: %s", buf);
68 }
69
70 /*** Transformation matrices ***/
71
72 // Construct string representation of a transformation matrix
73 string pdf_matrix::to_string() {
74         string s;
75         for (int i=0; i<6; i++) {
76                 if (i)
77                         s += " ";
78                 char buf[16];
79                 snprintf(buf, sizeof(buf), "%.3f", m[i]);
80                 s += buf;
81         }
82         return s;
83 }
84
85 /*** Bounding boxes ***/
86
87 QPDFObjectHandle BBox::to_array()
88 {
89         QPDFObjectHandle a = QPDFObjectHandle::newArray();
90         a.appendItem(QPDFObjectHandle::newReal(x_min, 1));
91         a.appendItem(QPDFObjectHandle::newReal(y_min, 1));
92         a.appendItem(QPDFObjectHandle::newReal(x_max, 1));
93         a.appendItem(QPDFObjectHandle::newReal(y_max, 1));
94         return a;
95 }
96
97 bool BBox::parse(QPDFObjectHandle h)
98 {
99         if (!h.isArray() || h.getArrayNItems() != 4)
100                 return false;
101         double x[4];
102         for (int i=0; i<4; i++) {
103                 QPDFObjectHandle item = h.getArrayItem(i);
104                 if (!item.isNumber())
105                         return false;
106                 x[i] = item.getNumericValue();
107         }
108         x_min = x[0];
109         y_min = x[1];
110         x_max = x[2];
111         y_max = x[3];
112         return true;
113 }
114
115 void BBox::transform(pdf_matrix &m)
116 {
117         m.apply(&x_min, &y_min);
118         m.apply(&x_max, &y_max);
119         if (x_max < x_min)
120                 swap(x_min, x_max);
121         if (y_max < y_min)
122                 swap(y_min, y_max);
123 }
124
125 /*** Unicode strings ***/
126
127 // Construct PDF representation of a UTF-8 string
128 QPDFObjectHandle unicode_string(string s)
129 {
130         // If it is ASCII only, use the string directly
131         bool ascii_only = true;
132         for (char c: s)
133                 if (c < 0x20 || c > 0x7e)
134                         ascii_only = false;
135         if (ascii_only)
136                 return QPDFObjectHandle::newString(s);
137
138         // Use iconv to convert the string to big-endian UTF-16
139         iconv_t conv = iconv_open("UTF-16BE", "UTF-8");
140         if (conv == (iconv_t) -1)
141                 die("Cannot initialize iconv: %m");
142
143         char *in_ptr = (char *) s.c_str();      // Work around bad API of iconv()
144         size_t in_len = strlen(in_ptr);
145         size_t out_len = 2*in_len + 2;          // Worst case (including the BOM)
146         char out_buf[out_len];
147         char *out_ptr = out_buf;
148         size_t res = iconv(conv, &in_ptr, &in_len, &out_ptr, &out_len);
149         if (res == (size_t) -1)
150                 die("iconv failed: %m");
151         if (in_len)
152                 die("iconv stopped before the end of input");
153
154         iconv_close(conv);
155
156         // Package UTF-16 in a PDF string
157         string out;
158         out += 0xfe;
159         out += 0xff;
160         for (char *p = out_buf; p < out_ptr; p++)
161                 out += *p;
162         return QPDFObjectHandle::newString(out);
163 }
164
165 /*** Conversion of pages to XObjects ***/
166
167 static BBox get_trim_box(QPDFObjectHandle page)
168 {
169         static const char * const boxes[] = { "/TrimBox", "/CropBox", "/MediaBox", NULL };
170         for (int i=0; boxes[i]; i++)
171                 if (page.hasKey(boxes[i]))
172                         return BBox(page.getKey(boxes[i]));
173         warn("Page has no trimbox, falling back to A4");
174         return BBox(0, 0, A4_WIDTH, A4_HEIGHT);
175 }
176
177 /* Conversion of pages to XObjects is inspired by CUPS's pdftopdf filter. */
178 class CombineFromContents_Provider : public QPDFObjectHandle::StreamDataProvider {
179         private:
180                 vector<QPDFObjectHandle> contents;
181         public:
182                 CombineFromContents_Provider(const vector<QPDFObjectHandle> &contents) : contents(contents) { }
183                 void provideStreamData(int objid UNUSED, int generation UNUSED, Pipeline* pipeline) {
184                         Pl_Concatenate concat("concat", pipeline);
185                         for (int i=0; i < (int)contents.size(); i++)
186                                 contents[i].pipeStreamData(&concat, true, false, false);
187                         concat.manualFinish();
188                 }
189 };
190
191 QPDFObjectHandle page_to_xobject(QPDF *out, QPDFObjectHandle page)
192 {
193         page.assertPageObject();
194
195         QPDFObjectHandle xo_stream = QPDFObjectHandle::newStream(out);
196         QPDFObjectHandle xo_dict = xo_stream.getDict();
197
198         xo_dict.replaceKey("/Type", QPDFObjectHandle::newName("/XObject"));
199         xo_dict.replaceKey("/Subtype", QPDFObjectHandle::newName("/Form"));
200         xo_dict.replaceKey("/FormType", QPDFObjectHandle::newInteger(1));
201
202         BBox box = get_trim_box(page);
203         xo_dict.replaceKey("/BBox", box.to_array());
204
205         xo_dict.replaceKey("/Resources", page.getKey("/Resources"));
206         if (page.hasKey("/Group"))
207                 xo_dict.replaceKey("/Group", page.getKey("/Group"));
208
209         if (page.hasKey("/UserUnit")) {
210                 double u = page.getKey("/UserUnit").getNumericValue();
211                 QPDFObjectHandle m = QPDFObjectHandle::newArray();
212                 m.appendItem(QPDFObjectHandle::newReal(u, 3));
213                 m.appendItem(QPDFObjectHandle::newReal(0, 0));
214                 m.appendItem(QPDFObjectHandle::newReal(0, 0));
215                 m.appendItem(QPDFObjectHandle::newReal(u, 3));
216                 m.appendItem(QPDFObjectHandle::newReal(0, 0));
217                 m.appendItem(QPDFObjectHandle::newReal(0, 0));
218                 xo_dict.replaceKey("/Matrix", m);
219         }
220
221         vector<QPDFObjectHandle> contents = page.getPageContents();
222         auto ph = PointerHolder<QPDFObjectHandle::StreamDataProvider>(new CombineFromContents_Provider(contents));
223         xo_stream.replaceStreamData(ph, QPDFObjectHandle::newNull(), QPDFObjectHandle::newNull());
224         return xo_stream;
225 }