Created
February 10, 2022 03:19
-
-
Save Magnus167/7dc30cb55a9311b664329b2a40c0859d to your computer and use it in GitHub Desktop.
script to delete watermarks from PDFs. (only documents; won't work for removing watermarks from images inside)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PyPDF2 import PdfFileReader, PdfFileWriter | |
import os | |
import glob | |
import sys | |
def removeWatermark(input_fname, output_fname): | |
with open(input_fname, "rb") as inputFile, open(output_fname, "wb") as outputFile: | |
reader = PdfFileReader(inputFile) | |
writer = PdfFileWriter() | |
for n in range(reader.numPages): | |
page = reader.getPage(n) | |
del page["/Contents"][-1] | |
writer.addPage(page) | |
writer.write(outputFile) | |
def main(): | |
pdfs = glob.glob('./input_folder/*.pdf') | |
os.makedirs('./output_folder', exist_ok=True) | |
for pdf in pdfs: | |
try: | |
removeWatermark(pdf, './output_folder/' + os.path.basename(pdf)) | |
print('Processed ' + pdf) | |
except: | |
print ("Error removing watermark from " + pdf) | |
pass | |
print('Finished.') | |
input('Press Enter to exit...') | |
if __name__ == "__main__": | |
main() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment