remove method

remove

Removes watermark from the document.

def remove(self, possible_watermark):
    ...
Parameter Type Description
possible_watermark groupdocs.watermark.search.PossibleWatermark The watermark to remove.

Example

Find and remove the first possible watermark containing particular text or image from a document of any supported type.

remove

Removes all watermarks in the collection from the document.

def remove(self, possible_watermarks):
    ...
Parameter Type Description
possible_watermarks groupdocs.watermark.search.PossibleWatermarkCollection The collection of watermarks to remove.

Example

Find and remove all possible watermarks containing particular text or image from a document of any supported type.

See Also