Share via

Signature Extraction using Document Intelligence or Content Extraction

Adeniken Nathaniel 0 Reputation points
2026-04-20T20:14:41.5033333+00:00

Can Azure Document intelligence or Content understanding extract signatures now? I know that this was not previously possible, but I'd like to know if it is possible to extract a signature from a document now? I know that this was not previously possible, but I'd like to know if it is possible to extract a signature from a document now

Azure Vision in Foundry Tools

2 answers

Sort by: Most helpful
  1. Karnam Venkata Rajeswari 2,795 Reputation points Microsoft External Staff Moderator
    2026-04-20T21:11:38.27+00:00

    Hello @Adeniken Nathaniel

    Welcome to Microsoft Q&A .Thank you for reaching out to us.

    Signature extraction is a common requirement in document workflows, and it is important to clarify what is currently supported and how this can be implemented in a practical way using available Azure AI capabilities.

    At this time, prebuilt signature extraction is not supported in Azure AI Document Intelligence. None of the prebuilt models—such as Read, Layout, Invoice, Receipt, ID, or Contract - provide a dedicated “Signature” field or return the handwritten or drawn signature itself as a reusable image or object. These models are designed primarily for text, layout, tables, and structured field extraction rather than visual artifact extraction.

    Supported approaches are as follows-

    1. Custom Document Intelligence models for structured documents - Custom Template or Custom Neural models can be trained to detect and locate signatures.Please follow the following steps
      • Create a custom model in Document Intelligence Studio.
      • Upload representative sample documents containing signatures.
      • Label the signature area explicitly as a custom field (for example, “Signature”).
      • Train and deploy the model.
      At runtime, the model can:
      • Indicate whether a signature is present.
      • Return bounding box or polygon coordinates and confidence for the labeled signature field.
      Important limitation to be noted
      • The service does not return the signature image itself.
      • Any cropping or image extraction must be handled externally using the original document and the returned coordinates.
    2. Layout model for signature region identification for varied layouts - The Layout model extracts document structure such as lines, words, and bounding regions without applying business semantics. Practical usage:
      • Analyze documents using the Layout API.
      • Identify visual regions where signatures appear based on position and surrounding context.
      • Use returned coordinates to crop or process the region outside the service.
      This approach is suitable when document layouts vary significantly or when signatures are not tied to fixed templates. Limitations to be aware of are that
      • Signature verification, authenticity checks, or signature matching are not supported.
      • Signature extraction as a reusable image or vector is not returned by the service.
      • Any biometric or forensic analysis requires downstream computer vision or custom image processing solutions.

    Thus , for Signature extraction -

    1. Prebuilt signature extraction is not supported
    2. Signature presence and location detection is supported via custom models
    3. Region identification using layout analysis is supported
    4. Signature verification or matching is not supported

    The following references might be helpful , please check them out

    Thank you

    Was this answer helpful?


  2. Q&A Assist
    2026-04-20T20:14:53.44+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Yes. Azure Document Intelligence now supports signature detection and extraction in multiple scenarios.

    Key options:

    1. Prebuilt bank check model
      The prebuilt US bank check model (v4.0, API version 2024-11-30, model ID prebuilt-check.us) supports signature detection on bank checks.
    2. Custom template models (v3.0+)
      Custom template (form) models support signature fields. Signature detection here means detecting the presence of a signature in the defined field, not identifying who signed. If the model returns unsigned, it did not find a signature in that field.
    3. Custom neural models (v4.0)
      The custom neural v4.0 (2024-11-30 GA) model explicitly supports signature detection, along with key‑value pairs, selection marks, tables, and overlapping fields.
      To use it:
      • Label fields with type Signature and draw the region around the signature.
      • Provide at least five training samples with labeled signatures (with some variation) for best accuracy.

    These capabilities allow extracting whether and where a document is signed (and the signature region), but they do not verify signer identity.

    Content Understanding is described as the evolution of Document Intelligence with broader multimodal capabilities, but the provided information does not add further signature-specific behavior beyond what is listed above.


    References:

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.