Removing found watermarks
Leave feedback
On this page
Search for the watermarks already present in a document — including those added by third-party tools — and remove them. Iterate the results in reverse so that removing an item does not shift the indexes still to visit.
The example below finds every possible watermark in a document and removes them all.
from groupdocs.watermark import Watermarker
def remove_watermark():
with Watermarker("./document.pdf") as watermarker:
possible = watermarker.search()
for i in range(len(possible) - 1, -1, -1):
watermarker.remove(possible[i])
watermarker.save("./output.pdf")
if __name__ == "__main__":
remove_watermark()
document.pdf is the sample file used in this example. Click here to download it.
Binary file (PDF, 394 KB)
Search by color and size, then remove every match.
from groupdocs.watermark import Watermarker
from groupdocs.watermark.search.search_criteria import TextFormattingSearchCriteria, ColorRange
def remove_watermark_with_formatting():
with Watermarker("./document.pdf") as watermarker:
criteria = TextFormattingSearchCriteria()
criteria.foreground_color_range = ColorRange()
criteria.foreground_color_range.min_hue = -15
criteria.foreground_color_range.max_hue = 15
criteria.foreground_color_range.min_brightness = 0.01
criteria.foreground_color_range.max_brightness = 0.99
criteria.min_font_size = 19
criteria.max_font_size = 42
possible = watermarker.search(criteria)
for i in range(len(possible) - 1, -1, -1):
watermarker.remove(possible[i])
watermarker.save("./output.pdf")
if __name__ == "__main__":
remove_watermark_with_formatting()
document.pdf is the sample file used in this example. Click here to download it.
Binary file (PDF, 394 KB)
Find hyperlinks with a particular URL using a regular expression, and remove only the entities that are hyperlinks.
import re
from groupdocs.watermark import Watermarker
from groupdocs.watermark.search import HyperlinkPossibleWatermark
from groupdocs.watermark.search.search_criteria import TextSearchCriteria
def remove_hyperlink_watermarks():
with Watermarker("./document.pdf") as watermarker:
possible = watermarker.search(TextSearchCriteria(re.compile(r"someurl\.com")))
for i in range(len(possible) - 1, -1, -1):
if isinstance(possible[i], HyperlinkPossibleWatermark):
print(possible[i].text)
watermarker.remove(possible[i])
watermarker.save("./output.pdf")
if __name__ == "__main__":
remove_hyperlink_watermarks()
document.pdf is the sample file used in this example. Click here to download it.
Binary file (PDF, 395 KB)
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.