GroupDocs.Signature for .NET

Seamlessly update PDF signatures

Unlock the ability to edit a wide spectrum of electronic signatures across popular business formats like PDF, Word, Excel, Presentations, and Images with the power of GroupDocs.Signature for .NET.

Steps for editing text signatures in PDF using C#

GroupDocs.Signature empowers .NET developers to revise the content of text signatures previously embedded in PDF files. Augment .NET applications with advanced capabilities.

  1. Import the PDF file into the Signature instance.
  2. Extract a list of all signatures within the document.
  3. Revise the content of any identified signature.
  4. Evaluate the results of the modification.
// Instantiate a Signature object with the document file path
using (Signature signature = new Signature("input.pdf"))
{
    // Execute a search for text signatures within the document
    TextSearchOptions options = new TextSearchOptions();
    List<TextSignature> signatures = signature.Search<TextSignature>(options);

    if (signatures.Count > 0)
    {
        // Update the text content of the first located signature
        TextSignature textSignature = signatures[0];
        textSignature.Text = "New Text";
        bool result = signature.Update(textSignature);

        // Validate the result of the text modification
        if (result)
        {
            Console.WriteLine($"Signature was updated successfully");
        }
    }
}
dotnet add package GroupDocs.Signature
click to copy
copied
More examples Documentation

Comprehensive signature management for documents

With GroupDocs.Signature for .NET, you can efficiently add, update, search, verify, or delete signatures across all major document formats, simplifying your document workflow.

Advanced signature modification

Versatile document signing

Our solution excels in applying diverse signatures, including text, images, barcodes, and stamps, to any part of a document. You can also embed and modify hidden metadata like EXIF in images, while safeguarding documents against unauthorized alterations using digital certificates.

Efficient signature search and validation

Leverage powerful tools to verify the accuracy and validity of signatures. Access a complete list of embedded signatures within a document, streamlining the verification process.

Streamlined signature updates

Modify previously added signatures with ease. Adjust the content, style, placement, and other signature-specific attributes to meet evolving document requirements.

Effortless signature removal

Full control over signature management is provided, allowing you to remove any type of signature from a document, ensuring flexibility in content handling.

Modify barcode signatures

This example illustrates how to programmatically modify barcode signatures in a document.

C#

// Load a document containing barcode signatures
using (Signature signature = new Signature("input.pdf"))
{
    // Search for all existing barcode signatures
    BarcodeSearchOptions options = new BarcodeSearchOptions();
    List<BarcodeSignature> signatures = signature.Search<BarcodeSignature>(options);

    if (signatures.Count > 0)
    {
        // Modify the position of the first detected barcode and save the document
        BarcodeSignature barcodeSignature = signatures[0];
        barcodeSignature.Left = 100;
        barcodeSignature.Top = 100;
        bool result = signature.Update(barcodeSignature);

        // Verify the success of the barcode modification
        if (result)
        {
            Console.WriteLine($"Barcode was updated successfully.");
        }
    }
}
dotnet add package GroupDocs.Signature
click to copy
copied
More examples Documentation

Discover the power of GroupDocs.Signature for .NET

GroupDocs.Signature for .NET offers not only comprehensive document signing capabilities but also allows seamless modification of existing signatures. Effortlessly adjust signature properties for commonly used formats like PDF, Word, Excel, and PowerPoint presentations with minimal effort.
Learn more
About illustration

Ready to get started?

Download GroupDocs.Signature for free or get a trial license for full access!

Useful resources

Explore documentation, code samples, and community support to enhance your experience.

Browse our extensive feature set

Discover the full range of signature formats and operations supported by our platform

Modify signatures across multiple file types

Documents signed with our .NET API can be easily modified. Extract and update signature details from supported formats, ensuring complete control over document integrity.

Temporary license tips

1
Sign up with your work email.
Free mail services are not allowed.
2
Use Get a temporary license button on the second step.
 English