forked from py-pdf/pypdf
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathmerger.py
590 lines (494 loc) · 21.2 KB
/
merger.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
# vim: sw=4:expandtab:foldmethod=marker
#
# Copyright (c) 2006, Mathieu Fenniak
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
# * The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
from sys import version_info
from .generic import *
from .pagerange import PageRange
from .pdf import PdfFileReader, PdfFileWriter
from .utils import isString, pypdfStr
if version_info < (3, 0):
from cStringIO import StringIO
StreamIO = StringIO
else:
from io import BytesIO
from io import FileIO as file
StreamIO = BytesIO
class _MergedPage(object):
"""
``_MergedPage()`` is used internally by ``PdfFileMerger`` to collect
necessary information on each page that is being merged.
"""
def __init__(self, pagedata, src, id):
self.src = src
self.pagedata = pagedata
self.out_pagedata = None
self.id = id
class PdfFileMerger(object):
def __init__(self, output, strict=True):
"""
Initializes a ``PdfFileMerger`` object. ``PdfFileMerger`` merges
multiple PDFs into a single PDF. It can concatenate, slice, insert, or
any combination of the above.
See the functions :meth:`merge()<merge>` (or :meth:`append()<append>`)
and :meth:`write()<write>` for usage information.
:param output: I/O stream to be used to write the merge results to.
:param bool strict: Determines whether user should be warned of all
problems and also causes some correctable problems to be fatal.
Defaults to ``True``.
"""
self.strict = strict
self._writer = PdfFileWriter(output)
self._inputs = []
self._pages = []
self._bookmarks = []
self._namedDests = []
self._idCount = 0
def merge(self, position, fileobj, bookmark=None, pages=None, importBookmarks=True):
"""
Merges the pages from the given file into the output file at the
specified page number.
:param int position: The *page number* to insert this file. File will
be inserted after the given number.
:param fileobj: A File Object or an object that supports the standard
read and seek methods similar to a File Object. Could also be a
string representing a path to a PDF file.
:param str bookmark: Optionally, you may specify a bookmark to be
applied at the beginning of the included file by supplying the text
of the bookmark.
:param pages: can be a :ref:`Page Range <page-range>` or a
``(start, stop[, step])`` tuple to merge only the specified range
of pages from the source document into the output document.
:param bool importBookmarks: You may prevent the source document's
bookmarks from being imported by specifying this as ``False``.
"""
# This parameter is passed to self._inputs.append and means
# that the stream used was created in this method.
myFile = False
# If the fileobj parameter is a string, assume it is a path
# and open a file object at that location. If it is a file,
# copy the file's contents into a BytesIO (or StreamIO) stream object;
# if it is a PdfFileReader, copy that reader's stream into a BytesIO
# (or StreamIO) stream.
# If fileobj is none of the above types, it is not modified
decryptionKey = None
if isString(fileobj):
fileobj = file(fileobj, "rb")
myFile = True
elif hasattr(fileobj, "seek") and hasattr(fileobj, "read"):
fileobj.seek(0)
filecontent = fileobj.read()
fileobj = StreamIO(filecontent)
myFile = True
elif isinstance(fileobj, PdfFileReader):
origTell = fileobj.stream.tell()
fileobj.stream.seek(0)
filecontent = StreamIO(fileobj.stream.read())
# Reset the stream to its original location
fileobj.stream.seek(origTell)
fileobj = filecontent
if hasattr(fileobj, "_decryption_key"):
decryptionKey = fileobj._decryption_key
myFile = True
# Create a new PdfFileReader instance using the stream
# (either file or BytesIO or StringIO) created above
pdfr = PdfFileReader(fileobj, strict=self.strict)
if decryptionKey is not None:
pdfr._decryption_key = decryptionKey
# Find the range of pages to merge.
if pages is None:
pages = (0, pdfr.numPages)
elif isinstance(pages, PageRange):
pages = pages.indices(pdfr.numPages)
elif not isinstance(pages, tuple):
raise TypeError('"pages" must be a tuple of (start, stop[, step])')
srcpages = []
if bookmark:
bookmark = Bookmark(
TextStringObject(bookmark),
NumberObject(self._idCount),
NameObject("/Fit"),
)
outline = []
if importBookmarks:
outline = pdfr.getOutlines()
outline = self._trimOutline(pdfr, outline, pages)
if bookmark:
self._bookmarks += [bookmark, outline]
else:
self._bookmarks += outline
dests = pdfr.getNamedDestinations()
dests = self._trimDests(pdfr, dests, pages)
self._namedDests += dests
# Gather all the pages that are going to be merged
for i in range(*pages):
pg = pdfr.getPage(i)
id = self._idCount
self._idCount += 1
mp = _MergedPage(pg, pdfr, id)
srcpages.append(mp)
self._associateDestsToPages(srcpages)
self._associateBookmarksToPages(srcpages)
# Slice to insert the pages at the specified position
self._pages[position:position] = srcpages
# Keep track of our input files so we can close them later
self._inputs.append((fileobj, pdfr, myFile))
def append(self, fileobj, bookmark=None, pages=None, importBookmarks=True):
"""
Identical to the :meth:`merge()<merge>` method, but assumes you want to
concatenate all pages onto the end of the file instead of specifying a
position.
:param fileobj: A File Object or an object that supports the standard
read and seek methods similar to a File Object. Could also be a
string representing a path to a PDF file.
:param str bookmark: Optionally, you may specify a bookmark to be
applied at the beginning of the included file by supplying the text
of the bookmark.
:param pages: can be a :ref:`Page Range <page-range>` or a
``(start, stop[, step])`` tuple to merge only the specified range
of pages from the source document into the output document.
:param bool importBookmarks: You may prevent the source document's
bookmarks from being imported by specifying this as ``False``.
"""
self.merge(len(self._pages), fileobj, bookmark, pages, importBookmarks)
def write(self, fileobj=None):
"""
Writes all data that has been merged to the given output file.
:param fileobj: Output file. Can be a filename or any kind of
file-like object.
"""
for page in self._pages:
self._writer.addPage(page.pagedata)
page.out_pagedata = self._writer.getReference(
self._writer._pages.getObject()["/Kids"][-1].getObject()
)
# Once all pages are added, create bookmarks to point at those pages
self._writeDests()
self._writeBookmarks()
# Write the output to the file
self._writer.write(fileobj)
def close(self):
"""
Shuts all file descriptors (input and output) and clears all memory
usage.
"""
self._pages = []
for fo, pdfr, mine in self._inputs:
if mine:
fo.close()
self._inputs = []
if not self._writer.isClosed:
self._writer.close()
del self._writer
def addMetadata(self, infos):
"""
Add custom metadata to the output.
:param dict infos: a Python dictionary where each key is a field and
each value is your new metadata.
Example: ``{u'/Title': u'My title'}``.
"""
self._writer.addMetadata(infos)
def setPageLayout(self, layout):
"""
Set the page layout
:param str layout: The page layout to be used
Valid layouts are:
/NoLayout Layout explicitly not specified
/SinglePage Show one page at a time
/OneColumn Show one column at a time
/TwoColumnLeft Show pages in two columns, odd-numbered pages on
the left
/TwoColumnRight Show pages in two columns, odd-numbered pages on
the right
/TwoPageLeft Show two pages at a time, odd-numbered pages on
the left
/TwoPageRight Show two pages at a time, odd-numbered pages on
the right
"""
self._writer.setPageLayout(layout)
def setPageMode(self, mode):
"""
Set the page mode.
:param str mode: The page mode to use.
Valid modes are:
/UseNone Do not show outlines or thumbnails panels
/UseOutlines Show outlines (aka bookmarks) panel
/UseThumbs Show page thumbnails panel
/FullScreen Full screen view
/UseOC Show Optional Content Group (OCG) panel
/UseAttachments Show attachments panel
"""
self._writer.setPageMode(mode)
def _trimDests(self, pdf, dests, pages):
"""
Removes any named destinations that are not a part of the specified
page set.
"""
newDests = []
prev_header_added = True
for k, o in list(dests.items()):
for j in range(*pages):
if pdf.getPage(j).getObject() == o["/Page"].getObject():
o[NameObject("/Page")] = o["/Page"].getObject()
assert pypdfStr(k) == pypdfStr(o["/Title"])
newDests.append(o)
break
return newDests
def _trimOutline(self, pdf, outline, pages):
"""
Removes any outline/bookmark entries that are not a part of the
specified page set.
"""
newOutline = []
prevHeaderAdded = True
for i, o in enumerate(outline):
if isinstance(o, list):
sub = self._trimOutline(pdf, o, pages)
if sub:
if not prevHeaderAdded:
newOutline.append(outline[i - 1])
newOutline.append(sub)
else:
prevHeaderAdded = False
for j in range(*pages):
if pdf.getPage(j).getObject() == o["/Page"].getObject():
o[NameObject("/Page")] = o["/Page"].getObject()
newOutline.append(o)
prevHeaderAdded = True
break
return newOutline
def _writeDests(self):
dests = self._namedDests
for v in dests:
pageno = None
pdf = None
if "/Page" in v:
for i, p in enumerate(self._pages):
if p.id == v["/Page"]:
v[NameObject("/Page")] = p.out_pagedata
pageno = i
pdf = p.src
break
if pageno is not None:
self._writer.addNamedDestinationObject(v)
def _writeBookmarks(self, bookmarks=None, parent=None):
if bookmarks is None:
bookmarks = self._bookmarks
last_added = None
for b in bookmarks:
if isinstance(b, list):
self._writeBookmarks(b, last_added)
continue
pageno = None
pdf = None
if "/Page" in b:
for i, p in enumerate(self._pages):
if p.id == b["/Page"]:
args = [NumberObject(p.id), NameObject(b["/Type"])]
# Nothing more to add
if b["/Type"] == "/FitH" or b["/Type"] == "/FitBH":
if "/Top" in b and not isinstance(b["/Top"], NullObject):
args.append(FloatObject(b["/Top"]))
else:
args.append(FloatObject(0))
del b["/Top"]
elif b["/Type"] == "/FitV" or b["/Type"] == "/FitBV":
if "/Left" in b and not isinstance(b["/Left"], NullObject):
args.append(FloatObject(b["/Left"]))
else:
args.append(FloatObject(0))
del b["/Left"]
elif b["/Type"] == "/XYZ":
if "/Left" in b and not isinstance(b["/Left"], NullObject):
args.append(FloatObject(b["/Left"]))
else:
args.append(FloatObject(0))
if "/Top" in b and not isinstance(b["/Top"], NullObject):
args.append(FloatObject(b["/Top"]))
else:
args.append(FloatObject(0))
if "/Zoom" in b and not isinstance(b["/Zoom"], NullObject):
args.append(FloatObject(b["/Zoom"]))
else:
args.append(FloatObject(0))
del b["/Top"], b["/Zoom"], b["/Left"]
elif b["/Type"] == "/FitR":
if "/Left" in b and not isinstance(b["/Left"], NullObject):
args.append(FloatObject(b["/Left"]))
else:
args.append(FloatObject(0))
if "/Bottom" in b and not isinstance(
b["/Bottom"], NullObject
):
args.append(FloatObject(b["/Bottom"]))
else:
args.append(FloatObject(0))
if "/Right" in b and not isinstance(
b["/Right"], NullObject
):
args.append(FloatObject(b["/Right"]))
else:
args.append(FloatObject(0))
if "/Top" in b and not isinstance(b["/Top"], NullObject):
args.append(FloatObject(b["/Top"]))
else:
args.append(FloatObject(0))
del b["/Left"], b["/Right"], b["/Bottom"], b["/Top"]
b[NameObject("/A")] = DictionaryObject(
{
NameObject("/S"): NameObject("/GoTo"),
NameObject("/D"): ArrayObject(args),
}
)
pageno = i
pdf = p.src
break
if pageno is not None:
del b["/Page"], b["/Type"]
last_added = self._writer.addBookmarkDict(b, parent)
def _associateDestsToPages(self, pages):
for nd in self._namedDests:
pageno = None
np = nd["/Page"]
if isinstance(np, NumberObject):
continue
for p in pages:
if np.getObject() == p.pagedata.getObject():
pageno = p.id
if pageno is not None:
nd[NameObject("/Page")] = NumberObject(pageno)
else:
raise ValueError("Unresolved named destination '%s'" % nd["/Title"])
def _associateBookmarksToPages(self, pages, bookmarks=None):
if bookmarks is None:
bookmarks = self._bookmarks
for b in bookmarks:
if isinstance(b, list):
self._associateBookmarksToPages(pages, b)
continue
pageno = None
bp = b["/Page"]
if isinstance(bp, NumberObject):
continue
for p in pages:
if bp.getObject() == p.pagedata.getObject():
pageno = p.id
if pageno is not None:
b[NameObject("/Page")] = NumberObject(pageno)
else:
raise ValueError("Unresolved bookmark '%s'" % b["/Title"])
def findBookmark(self, bookmark, root=None):
if root is None:
root = self._bookmarks
for i, b in enumerate(root):
if isinstance(b, list):
res = self.findBookmark(bookmark, b)
if res:
return [i] + res
elif b == bookmark or b["/Title"] == bookmark:
return [i]
return None
def addBookmark(self, title, pagenum, parent=None):
"""
Add a bookmark to this PDF file.
:param str title: Title to use for this bookmark.
:param int pagenum: Page number this bookmark will point to.
:param parent: A reference to a parent bookmark to create nested
bookmarks.
"""
if parent is None:
iloc = [len(self._bookmarks) - 1]
elif isinstance(parent, list):
iloc = parent
else:
iloc = self.findBookmark(parent)
dest = Bookmark(
TextStringObject(title),
NumberObject(pagenum),
NameObject("/FitH"),
NumberObject(826),
)
if parent is None:
self._bookmarks.append(dest)
else:
bmparent = self._bookmarks
for i in iloc[:-1]:
bmparent = bmparent[i]
npos = iloc[-1] + 1
if npos < len(bmparent) and isinstance(bmparent[npos], list):
bmparent[npos].append(dest)
else:
bmparent.insert(npos, [dest])
return dest
def addNamedDestination(self, title, pagenum):
"""
Add a destination to the output.
:param str title: Title to use.
:param int pagenum: Page number this destination points at.
"""
dest = Destination(
TextStringObject(title),
NumberObject(pagenum),
NameObject("/FitH"),
NumberObject(826),
)
self._namedDests.append(dest)
class OutlinesObject(list):
def __init__(self, pdf, tree, parent=None):
list.__init__(self)
self.tree = tree
self.pdf = pdf
self.parent = parent
def remove(self, index):
obj = self[index]
del self[index]
self.tree.removeChild(obj)
def add(self, title, pagenum):
pageRef = self.pdf.getObject(self.pdf._pages)["/Kids"][pagenum]
action = DictionaryObject()
action.update(
{
NameObject("/D"): ArrayObject(
[pageRef, NameObject("/FitH"), NumberObject(826)]
),
NameObject("/S"): NameObject("/GoTo"),
}
)
actionRef = self.pdf._addObject(action)
bookmark = TreeObject()
bookmark.update(
{
NameObject("/A"): actionRef,
NameObject("/Title"): createStringObject(title),
}
)
self.pdf._addObject(bookmark)
self.tree.addChild(bookmark)
def removeAll(self):
for child in [x for x in self.tree.children()]:
self.tree.removeChild(child)
self.pop()