-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
326 lines (294 loc) · 13.2 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
/**
* Sample React Native App for BlinkIDCustom
*/
import React, { Component } from 'react';
import * as BlinkInputReactNative from 'blinkinput-react-native';
import {
AppRegistry,
Platform,
StyleSheet,
Text,
View,
Image,
ScrollView,
Button
} from 'react-native';
const licenseKey = Platform.select({
// iOS license key for applicationID: org.reactjs.native.example.BlinkInputReactNative
ios: 'sRwAAAEwb3JnLnJlYWN0anMubmF0aXZlLmV4YW1wbGUuQmxpbmtJbnB1dFJlYWN0TmF0aXZlbqrgdryv438C8trPPXHqrqlI5HWPhIYWPV/6tUKpZhQFqQbRIejQdBIe+G6DDXTGLEqbClFRzElDAstFDQzfVsdWp4XIR6/NJinT+A3WqmXsBZOB9pmkTED5g2LCt6ZicDaPufTpZddglJHQtwzPcL4AqehSxivScW/5ltHywbmISvknwZ/9PomvI2Levw==',
// android license key for applicationID: com.BlinkInputReactNative
android: 'sRwAAAAZY29tLmJsaW5raW5wdXRyZWFjdG5hdGl2ZUkM+wNN2TXU6jYZEl8rB37lsGXEBE1XiOiEyvIHc4ltEDNEIVCs/8qL9aJLt//ulKl3dZaXQmTPCbfBFKnJK1XzuGtCnnCF2Lx1B2ynPWLKjpXZ/qcJs5D5YAESUBD7npknal0nma2FvKFQNXj0FntN0fmsLdZq8eW1nULFvlXevphm/+/TAB1oD2lRz6c='
})
var renderIf = function(condition, content) {
if (condition) {
return content;
}
return null;
}
var createEmptyState = function() {
return {
showDocumentImage1: false,
resultFrontImageDocument: '',
showDocumentImage2: false,
resultBackImageDocument: '',
showImageFace: false,
resultImageFace: '',
showSuccessFrame: false,
successFrame: '',
results: '',
licenseKeyErrorMessage: ''
};
}
export default class BlinkInputReactNativeApp extends Component {
constructor(props) {
super(props);
this.state = createEmptyState();
}
async scan() {
try {
// var mrtdSuccessFrameGrabber = new BlinkInputReactNative.SuccessFrameGrabberRecognizer(pdf417Recognizer);
// BlinkIDCombinedRecognizer automatically classifies different document types and scans the data from
// the supported document
var pdf417Recognizer = new BlinkInputReactNative.Pdf417Recognizer();
const scanningResults = await BlinkInputReactNative.BlinkInput.scanWithCamera(
new BlinkInputReactNative.BarcodeOverlaySettings(),
new BlinkInputReactNative.RecognizerCollection([pdf417Recognizer/*, mrtdSuccessFrameGrabber*/]),
licenseKey
);
if (scanningResults) {
let newState = createEmptyState();
for (let i = 0; i < scanningResults.length; ++i) {
let localState = this.handleResult(scanningResults[i]);
newState.showDocumentImage1 = newState.showDocumentImage1 || localState.showDocumentImage1;
if (localState.showDocumentImage1) {
newState.resultFrontImageDocument = localState.resultFrontImageDocument;
}
newState.showDocumentImage2 = newState.showDocumentImage2 || localState.showDocumentImage2;
if (localState.showDocumentImage2) {
newState.resultBackImageDocument = localState.resultBackImageDocument;
}
newState.showImageFace = newState.showImageFace || localState.showImageFace;
if (localState.resultImageFace) {
newState.resultImageFace = localState.resultImageFace;
}
newState.results += localState.results;
newState.showSuccessFrame = newState.showSuccessFrame || localState.showSuccessFrame;
if (localState.successFrame) {
newState.successFrame = localState.successFrame;
}
}
newState.results += '\n';
this.setState(newState);
}
} catch (error) {
console.log(error);
this.setState({ showDocumentImage1: false, resultFrontImageDocument: '', showDocumentImage2: false, resultBackImageDocument: '', showImageFace: false, resultImageFace: '', results: 'Scanning has been cancelled', showSuccessFrame: false,
successFrame: ''});
}
}
async captureDocument() {
try {
var documentCaptureRecognizer = new BlinkInputReactNative.DocumentCaptureRecognizer();
documentCaptureRecognizer.returnFullDocumentImage = true;
const documentCaptureResult = await BlinkInputReactNative.BlinkInput.captureDocument(
documentCaptureRecognizer,
licenseKey
);
if (documentCaptureResult) {
let newState = createEmptyState();
let localState = this.handleResult(documentCaptureResult);
newState.showDocumentImage1 = newState.showDocumentImage1 || localState.showDocumentImage1;
if (localState.showDocumentImage1) {
newState.resultFrontImageDocument = localState.resultFrontImageDocument;
}
newState.showDocumentImage2 = newState.showDocumentImage2 || localState.showDocumentImage2;
if (localState.showDocumentImage2) {
newState.resultBackImageDocument = localState.resultBackImageDocument;
}
newState.showImageFace = newState.showImageFace || localState.showImageFace;
if (localState.resultImageFace) {
newState.resultImageFace = localState.resultImageFace;
}
newState.results += localState.results;
newState.showSuccessFrame = newState.showSuccessFrame || localState.showSuccessFrame;
if (localState.successFrame) {
newState.successFrame = localState.successFrame;
}
newState.results += '\n';
this.setState(newState);
}
} catch (error) {
console.log(error);
this.setState({ showDocumentImage1: false, resultFrontImageDocument: '', showDocumentImage2: false, resultBackImageDocument: '', showImageFace: false, resultImageFace: '', results: 'Scanning has been cancelled', showSuccessFrame: false,
successFrame: ''});
}
}
async scanFieldByField() {
try {
var fieldByFieldElement = new BlinkInputReactNative.FieldByFieldElement('Raw', new BlinkInputReactNative.RawParser(), 'Raw Text', 'Scan text');
var fieldByFieldCollection = new BlinkInputReactNative.FieldByFieldCollection([fieldByFieldElement]);
const fieldByFieldResult = await BlinkInputReactNative.BlinkInput.scanWithFieldByField(
fieldByFieldCollection,
licenseKey
);
if (fieldByFieldResult) {
let newState = createEmptyState();
for (let i = 0; i < fieldByFieldResult.length; ++i) {
let localState = this.handleResult(fieldByFieldResult[i]);
newState.showDocumentImage1 = newState.showDocumentImage1 || localState.showDocumentImage1;
if (localState.showDocumentImage1) {
newState.resultFrontImageDocument = localState.resultFrontImageDocument;
}
newState.showDocumentImage2 = newState.showDocumentImage2 || localState.showDocumentImage2;
if (localState.showDocumentImage2) {
newState.resultBackImageDocument = localState.resultBackImageDocument;
}
newState.showImageFace = newState.showImageFace || localState.showImageFace;
if (localState.resultImageFace) {
newState.resultImageFace = localState.resultImageFace;
}
newState.results += localState.results;
newState.showSuccessFrame = newState.showSuccessFrame || localState.showSuccessFrame;
if (localState.successFrame) {
newState.successFrame = localState.successFrame;
}
}
newState.results += '\n';
this.setState(newState);
}
} catch (error) {
console.log(error);
this.setState({ showDocumentImage1: false, resultFrontImageDocument: '', showDocumentImage2: false, resultBackImageDocument: '', showImageFace: false, resultImageFace: '', results: 'Scanning has been cancelled', showSuccessFrame: false,
successFrame: ''});
}
}
handleResult(result) {
let fieldDelim = ";\n";
var localState = createEmptyState();
if (result instanceof BlinkInputReactNative.Pdf417RecognizerResult) {
let pdf417Result = result;
let resultString =
"Data: " + pdf417Result.stringData + fieldDelim;
localState.results += resultString;
} else if (result instanceof BlinkInputReactNative.DocumentCaptureResult) {
localState.results = "Document Capture result";
// Document image is returned as Base64 encoded JPEG
if (result.documentCaptureRecognizerResult.fullDocumentImage) {
localState.showDocumentImage1 = true;
localState.resultFrontImageDocument = 'data:image/jpg;base64,' + result.documentCaptureRecognizerResult.fullDocumentImage;
}
if (result.capturedFullImage) {
localState.showDocumentImage2 = true;
localState.resultBackImageDocument = 'data:image/jpg;base64,' + result.capturedFullImage;
}
} else if (result instanceof BlinkInputReactNative.FieldByFieldResult) {
localState.results = "Field by Field result";
let fieldByfieldResult = result;
let resultString =
"Identifier: " + fieldByfieldResult.identifier + fieldDelim + "Value: " + fieldByfieldResult.value + fieldDelim;
localState.results += resultString;
}
return localState;
}
render() {
let displayFrontImageDocument = this.state.resultFrontImageDocument;
let displayBackImageDocument = this.state.resultBackImageDocument;
let displayImageFace = this.state.resultImageFace;
let displaySuccessFrame = this.state.successFrame;
let displayFields = this.state.results;
return (
<View style={styles.container}>
<Text style={styles.label}>MicroBlink Ltd</Text>
<View style={styles.buttonContainer}>
<Button
onPress={this.scan.bind(this)}
title="Scan"
color="#87c540"
/>
</View>
<View style={styles.buttonContainer}>
<Button
onPress={this.captureDocument.bind(this)}
title="Capture document"
color="#87c540"
/>
</View>
<View style={styles.buttonContainer}>
<Button
onPress={this.scanFieldByField.bind(this)}
title="Field by Field Scanning BlinkInput"
color="#87c540"
/>
</View>
<ScrollView
automaticallyAdjustContentInsets={false}
scrollEventThrottle={200}y>
{renderIf(this.state.showDocumentImage1,
<View style={styles.imageContainer}>
<Image
resizeMode='contain'
source={{uri: displayFrontImageDocument, scale: 3}} style={styles.imageResult}/>
</View>
)}
{renderIf(this.state.showDocumentImage2,
<View style={styles.imageContainer}>
<Image
resizeMode='contain'
source={{uri: displayBackImageDocument, scale: 3}} style={styles.imageResult}/>
</View>
)}
{renderIf(this.state.showImageFace,
<View style={styles.imageContainer}>
<Image
resizeMode='contain'
source={{uri: displayImageFace, scale: 3}} style={styles.imageResult}/>
</View>
)}
{renderIf(this.state.showSuccessFrame,
<View style={styles.imageContainer}>
<Image
resizeMode='contain'
source={{uri: displaySuccessFrame, scale: 3}} style={styles.imageResult}/>
</View>
)}
<Text style={styles.results}>{displayFields}</Text>
</ScrollView>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF'
},
label: {
fontSize: 20,
textAlign: 'center',
marginTop: 50
},
buttonContainer: {
margin: 20
},
imageContainer: {
flexDirection: 'row',
justifyContent: 'center'
},
results: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
imageResult: {
flex: 1,
flexShrink: 1,
height: 200,
alignItems: 'center',
justifyContent: 'center',
margin: 10
},
});
AppRegistry.registerComponent('BlinkInputReactNative', () => BlinkInputReactNativeApp);