An Azure service that turns documents into usable data. Previously known as Azure Form Recognizer.
There is no supported service-side option today to suppress the OCR overlay when a PDF page or region already contains native text.
For searchable PDF output, only prebuilt-read supports output=pdf, and the documented API surface requires submitting the document and requesting PDF output. The accepted Microsoft Q&A guidance states that the service does not inspect the input PDF for an existing text layer first, and there is no request parameter such as a native-text skip flag, region mask, or partial-page OCR option. Any page sent through searchable PDF generation receives an embedded OCR text layer.
For mixed pages, the same guidance recommends client-side handling:
- Detect whether each page already has extractable native text.
- Send only image-only pages for OCR/searchable PDF generation.
- For mixed pages, flatten or rasterize the page first to remove the existing text layer, then run
prebuilt-readwithoutput=pdf. - Reassemble the final PDF so each page has only one coherent text layer.
That recommendation aligns with the current product behavior that OCR is applied to the submitted page content and there is no built-in option to disable OCR only for image regions while preserving native paragraph text.
The available context does not describe any announced plan or roadmap item for an ignoreExistingText-style feature.
References: