Delete Image signatures from documents

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.

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

  • Create new instance of Signature class and pass source document path as a constructor parameter;
  • Instantiate ImageSearchOptions object with desired properties;
  • Call Search method to obtain list of ImageSignature;
  • Select from list ImageSignature object(s) that should be removed from the document;
  • Call Signature object Delete method and pass one or several signatures to it.

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

using (Signature signature = new Signature("signed.pptx"))
{
    ImageSearchOptions options = new ImageSearchOptions();
    // search for image signatures in document
    List<ImageSignature> signatures = signature.Search<ImageSignature>(options);
    if (signatures.Count > 0)
    {
        ImageSignature imageSignature = signatures[3];
        bool result = signature.Delete(imageSignature);
        if (result)
        {
            Console.WriteLine($"Image signature at location {imageSignature.Left}x{imageSignature.Top} and Size {imageSignature.Size}' was deleted from document ['{fileName}'].");
        }
        else
        {
            Console.WriteLine($"Signature was not deleted from the document! Signature at location {imageSignature.Left}x{imageSignature.Top} and Size {imageSignature.Size} was not found!");
        }
    }
}

Advanced Usage Topics

To learn more about document eSign features, please refer to the advanced usage section.

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 .NET 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.