Delete Image signatures from documents

Overview

GroupDocs.Signature provides ImageSignature class to manipulate image signatures and delete them from the documents over Delete method.
Please be aware that Delete method modifies the same document that was passed to constructor of Signature class.

How to delete Image signature from the document

Here are the steps to delete Image signature from the document with GroupDocs.Signature:

This example shows how to delete Image signature that was found using Search method.

import groupdocs.signature as signature
from groupdocs.signature.options import ImageSearchOptions

# Initialize signature
with signature.Signature("signed.pptx") as sign:
    # Create search options
    options = ImageSearchOptions()
    
    # Search for image signatures in the document
    signatures = sign.search(options)
    
    if len(signatures) > 0:
        image_signature = signatures[3]
        result = sign.delete(image_signature)
        
        if result:
            print(
                f"Image signature at location {image_signature.left}x{image_signature.top} "
                f"and size {image_signature.size} was deleted from document ['{fileName}']."
            )
        else:
            print(
                f"Signature was not deleted from the document! "
                f"Signature at location {image_signature.left}x{image_signature.top} "
                f"and size {image_signature.size} was not found!"
            )

More resources

GitHub Examples

You may easily run the code above and see the feature in action in our GitHub examples:

Free Online Apps

Along with the full-featured Python library, we provide simple but powerful free online apps.

To sign PDF, Word, Excel, PowerPoint, and other documents you can use the online apps from the GroupDocs.Signature App Product Family.