GroupDocs.Signature provides BarcodeSignature class to manipulate barcode 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 Barcode signature from the document
Here are the steps to delete Barcode signature from the document with GroupDocs.Signature:
Create new instance of Signature class and pass source document path as a constructor parameter;
Select from list BarcodeSignature 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 Barcode signature that was found using Search method.
importgroupdocs.signatureassignaturefromgroupdocs.signature.optionsimportBarcodeSearchOptions# Initialize signaturewithsignature.Signature("signed.docx")assign:# Create search optionsoptions=BarcodeSearchOptions()# Search for barcode signatures in documentsignatures=sign.search(options)iflen(signatures)>0:barcode_signature=signatures[0]result=sign.delete(barcode_signature)ifresult:print(f"Signature with Barcode '{barcode_signature.text}' and "f"encode type '{barcode_signature.encode_type.type_name}' "f"was deleted from document ['{fileName}'].")else:print(f"Signature was not deleted from the document! "f"Signature with Barcode '{barcode_signature.text}' and "f"encode type '{barcode_signature.encode_type.type_name}' "f"was not found!")
More resources
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples: