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