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-
- 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.
- Indicate whether a signature is present.
- Return bounding box or polygon coordinates and confidence for the labeled signature field.
- 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.
- 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.
- 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 -
- Prebuilt signature extraction is not supported
- Signature presence and location detection is supported via custom models
- Region identification using layout analysis is supported
- Signature verification or matching is not supported
The following references might be helpful , please check them out
- Document layout analysis - Document Intelligence - Foundry Tools | Microsoft Learn
- Custom document models - Document Intelligence - Foundry Tools | Microsoft Learn
- What Is Azure Document Intelligence in Foundry Tools? - Foundry Tools | Microsoft Learn
Thank you