Hi there Pavith Vickneswararajah
Thanks for using QandA platform
Yes, it is possible, the AnalyzeDocumentFromUriAsync
method retrieves the analyzed data from a document, it does not directly generate an OCR file. but, you can extract the text from the analysis result and save it as a file in your blob storage. After running the analysis using prebuilt-layout
, you can iterate through the Pages
in the AnalyzeResult
to collect text from Lines
or Words
. Once you have the extracted text, use the Azure Blob SDK to create and upload a file (e.g., a .txt
file) into your container.
If this helps kindly accept the answer thanks much.