]> mj.ucw.cz Git - paperjam.git/blob - pdf-tools.cc
Shuffling code around
[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                 char buf[16];
26                 snprintf(buf, sizeof(buf), "%.3f", m[i]);
27                 s += buf;
28         }
29         return s;
30 }
31
32 /*** Bounding boxes ***/
33
34 QPDFObjectHandle BBox::to_array()
35 {
36         QPDFObjectHandle a = QPDFObjectHandle::newArray();
37         a.appendItem(QPDFObjectHandle::newReal(x_min, 1));
38         a.appendItem(QPDFObjectHandle::newReal(y_min, 1));
39         a.appendItem(QPDFObjectHandle::newReal(x_max, 1));
40         a.appendItem(QPDFObjectHandle::newReal(y_max, 1));
41         return a;
42 }
43
44 string BBox::to_rect()
45 {
46         char buf[64];
47         snprintf(buf, sizeof(buf), "%.1f %.1f %.1f %.1f", x_min, y_min, width(), height());
48         return string(buf);
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 /*** Unicode strings ***/
88
89 // Construct PDF representation of a UTF-8 string
90 QPDFObjectHandle unicode_string(string s)
91 {
92         // If it is ASCII only, use the string directly
93         bool ascii_only = true;
94         for (char c: s)
95                 if (c < 0x20 || c > 0x7e)
96                         ascii_only = false;
97         if (ascii_only)
98                 return QPDFObjectHandle::newString(s);
99
100         // Use iconv to convert the string to big-endian UTF-16
101         iconv_t conv = iconv_open("UTF-16BE", "UTF-8");
102         if (conv == (iconv_t) -1)
103                 die("Cannot initialize iconv: %m");
104
105         char *in_ptr = (char *) s.c_str();      // Work around bad API of iconv()
106         size_t in_len = strlen(in_ptr);
107         size_t out_len = 2*in_len + 2;          // Worst case (including the BOM)
108         char out_buf[out_len];
109         char *out_ptr = out_buf;
110         size_t res = iconv(conv, &in_ptr, &in_len, &out_ptr, &out_len);
111         if (res == (size_t) -1)
112                 die("iconv failed: %m");
113         if (in_len)
114                 die("iconv stopped before the end of input");
115
116         iconv_close(conv);
117
118         // Package UTF-16 in a PDF string
119         string out;
120         out += 0xfe;
121         out += 0xff;
122         for (char *p = out_buf; p < out_ptr; p++)
123                 out += *p;
124         return QPDFObjectHandle::newString(out);
125 }
126
127 /*** Conversion of pages to XObjects ***/
128
129 static BBox get_trim_box(QPDFObjectHandle page)
130 {
131         static const char * const boxes[] = { "/TrimBox", "/CropBox", "/MediaBox", NULL };
132         for (int i=0; boxes[i]; i++)
133                 if (page.hasKey(boxes[i]))
134                         return BBox(page.getKey(boxes[i]));
135         warn("Page has no trimbox, falling back to A4");
136         return BBox(0, 0, A4_WIDTH, A4_HEIGHT);
137 }
138
139 /* Conversion of pages to XObjects is inspired by CUPS's pdftopdf filter. */
140 class CombineFromContents_Provider : public QPDFObjectHandle::StreamDataProvider {
141         private:
142                 vector<QPDFObjectHandle> contents;
143         public:
144                 CombineFromContents_Provider(const vector<QPDFObjectHandle> &contents) : contents(contents) { }
145                 void provideStreamData(int objid UNUSED, int generation UNUSED, Pipeline* pipeline) {
146                         Pl_Concatenate concat("concat", pipeline);
147                         for (int i=0; i < (int)contents.size(); i++)
148                                 contents[i].pipeStreamData(&concat, true, false, false);
149                         concat.manualFinish();
150                 }
151 };
152
153 QPDFObjectHandle page_to_xobject(QPDF *out, QPDFObjectHandle page)
154 {
155         page.assertPageObject();
156
157         QPDFObjectHandle xo_stream = QPDFObjectHandle::newStream(out);
158         QPDFObjectHandle xo_dict = xo_stream.getDict();
159
160         xo_dict.replaceKey("/Type", QPDFObjectHandle::newName("/XObject"));
161         xo_dict.replaceKey("/Subtype", QPDFObjectHandle::newName("/Form"));
162         xo_dict.replaceKey("/FormType", QPDFObjectHandle::newInteger(1));
163
164         BBox box = get_trim_box(page);
165         xo_dict.replaceKey("/BBox", box.to_array());
166
167         xo_dict.replaceKey("/Resources", page.getKey("/Resources"));
168         if (page.hasKey("/Group"))
169                 xo_dict.replaceKey("/Group", page.getKey("/Group"));
170
171         if (page.hasKey("/UserUnit")) {
172                 double u = page.getKey("/UserUnit").getNumericValue();
173                 QPDFObjectHandle m = QPDFObjectHandle::newArray();
174                 m.appendItem(QPDFObjectHandle::newReal(u, 3));
175                 m.appendItem(QPDFObjectHandle::newReal(0, 0));
176                 m.appendItem(QPDFObjectHandle::newReal(0, 0));
177                 m.appendItem(QPDFObjectHandle::newReal(u, 3));
178                 m.appendItem(QPDFObjectHandle::newReal(0, 0));
179                 m.appendItem(QPDFObjectHandle::newReal(0, 0));
180                 xo_dict.replaceKey("/Matrix", m);
181         }
182
183         vector<QPDFObjectHandle> contents = page.getPageContents();
184         auto ph = PointerHolder<QPDFObjectHandle::StreamDataProvider>(new CombineFromContents_Provider(contents));
185         xo_stream.replaceStreamData(ph, QPDFObjectHandle::newNull(), QPDFObjectHandle::newNull());
186         return xo_stream;
187 }