Update Barcode signatures in document

GroupDocs.Signature provides BarcodeSignature class to manipulate barcode signatures location, size and textual content. 

Please be aware that update method modifies the same document that was passed to constructor of Signature class.

Here are the steps to update Barcode signature in the document with GroupDocs.Signature:

This example shows how to update Barcode signature that was found using  search method.

Signature signature = new Signature("sampleSigned.pdf");
try 
{
    BarcodeSearchOptions options = new BarcodeSearchOptions();

    List<BarcodeSignature> signatures = signature.search(BarcodeSignature.class,options);
    if (signatures.size() > 0)
    {

        BarcodeSignature barcodeSignature = signatures.get(0);
        barcodeSignature.setLeft(100);
        barcodeSignature.setTop(100);
        boolean result = signature.update("sampleSigned.pdf",barcodeSignature);
        if (result)
        {
            System.out.print("Signature with Barcode '"+barcodeSignature.getText()+"' and encode type '"+barcodeSignature.getEncodeType().getTypeName()+"' was updated in the document ['"+fileName+"'].");
        }
        else
        {
            System.out.print("Signature was not updated in the document! Signature with Barcode"+barcodeSignature.getText()+"' and encode type '"+barcodeSignature.getEncodeType().getTypeName()+"' was not found!");
        }
    }
} catch (Exception e) {
    throw new GroupDocsSignatureException(e.getMessage());
}

More resources

Advanced Usage Topics

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

GitHub Examples 

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

Free Online App 

Along with full-featured .NET library we provide simple, but powerful free Apps.
You are welcome to eSign PDF, Word, Excel, PowerPoint documents with free to use online GroupDocs Signature App.