2. FOCR SDK Features
Init gateway
OCRManager.initGateway(appId, secretKey, new IInitGatewayCallback() {
@Override
public void onSuccess() {
}
@Override
public void onFail(@Nullable AppException error) {
}
});OCRManager.initGateway(appId, secretKey, object : IInitGatewayCallback {
override fun onSuccess() {
}
override fun onFail(error: AppException?) {
}
})Register OCR callback
Status
Description
Get Config
Start OCR
Export OCR data
UI Preview OCR data
Last updated