forked from metafy-social/python-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpywatermark.py
More file actions
42 lines (28 loc) · 1.11 KB
/
Copy pathpywatermark.py
File metadata and controls
42 lines (28 loc) · 1.11 KB
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
from PyPDF4 import PdfFileWriter, PdfFileReader
import PyPDF4
PyPDF4.PdfFileReader('input.pdf')
def put_watermark(input_pdf, output_pdf, watermark):
# reads the watermark pdf file through
# PdfFileReader
watermark_instance = PdfFileReader(watermark)
# fetches the respective page of
# watermark(1st page)
watermark_page = watermark_instance.getPage(0)
# reads the input pdf file
pdf_reader = PdfFileReader(input_pdf)
# It creates a pdf writer object for the
# output file
pdf_writer = PdfFileWriter()
# iterates through the original pdf to
# merge watermarks
for page in range(pdf_reader.getNumPages()):
page = pdf_reader.getPage(page)
# will overlay the watermark_page on top
# of the current page.
page.mergePage(watermark_page)
# add that newly merged page to the
# pdf_writer object.
pdf_writer.addPage(page)
with open(output_pdf, 'wb') as out:
# writes to the respective output_pdf provided
pdf_writer.write(out)