Skip to main content

Text Recognition

After a successful scan or import of a document, you can get the detected text of the entire document or single pages.

Initialization

Docutain's React-Native SDK needs to be initialized prior to using any functionality of it as described here.

Get the detected text

In order to get the detected text of the entire document, call the following line of code:

import DocutainSDK from '@docutain/react-native-docutain-sdk';

//...
//scan or import file
//...

const text: String = await DocutainSDK.getText();

In order to get the detected text of a specific page, call the following line of code and specify the page number:

import DocutainSDK from '@docutain/react-native-docutain-sdk';

//...
//scan or import file
//...

const text: String = await DocutainSDK.getTextPage(1);