File: cat.py

package info (click to toggle)
pdfrw 0.4-2.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 476 kB
  • sloc: python: 3,930; makefile: 4
file content (35 lines) | stat: -rwxr-xr-x 663 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/env python

'''
usage:   cat.py <first.pdf> [<next.pdf> ...]

Creates cat.<first.pdf>

This file demonstrates two features:

1) Concatenating multiple input PDFs.

2) adding metadata to the PDF.

'''

import sys
import os

from pdfrw import PdfReader, PdfWriter, IndirectPdfDict

inputs = sys.argv[1:]
assert inputs
outfn = 'cat.' + os.path.basename(inputs[0])

writer = PdfWriter()
for inpfn in inputs:
    writer.addpages(PdfReader(inpfn).pages)

writer.trailer.Info = IndirectPdfDict(
    Title='your title goes here',
    Author='your name goes here',
    Subject='what is it all about?',
    Creator='some script goes here',
)
writer.write(outfn)