forked from microblink/blinkid-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
285 lines (260 loc) · 12 KB
/
index.js
File metadata and controls
285 lines (260 loc) · 12 KB
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
/**
* Sample React Native App for BlinkID
* https://github.com/BlinkID/blinkid-react-native
*/
import React, { Component } from 'react';
import * as BlinkIDReactNative from 'blinkid-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.BlinkIDReactNative
ios: 'sRwAAAEtb3JnLnJlYWN0anMubmF0aXZlLmV4YW1wbGUuQmxpbmtJRFJlYWN0TmF0aXZlt67qu3Fk2vMma/ITrjQRfa1DSpvMm8yEvRaQ3SuMwaMY0EluqswpnmAYdAMf0UHi27L7ZpbQTTnBAKGJ9LGGAUGwPEuvAwsxL5ESWSnabtuFl3ZKMT+cbzmsfY03KzTn17W5zQZqmiRvBEppFrn3ReRVTn7YCBfp25UrukFMLHI29Mfinzy65rc1aRMhRYU=',
// android license key for applicationID: com.blinkidreactnative
android: 'sRwAAAAWY29tLmJsaW5raWRyZWFjdG5hdGl2ZYouOutIS2CbdVuoF24kqsH6BLwKyP7n7dTfBKeKO4i/V1t/3T0nShrUFSV3iU0WOLaf4z+9P1CuTGVsr7huRDRGRMbwmeNDs4A008ywYfVIz50fitgGUNxc8eTLO7upwE9iuqXD7qSBY7GT/DUmfIg5PA5yXj+jIoZYZ6Kta5mDPzz+D3KdCOcxiTlZWxuk'
})
var renderIf = function(condition, content) {
if (condition) {
return content;
}
return null;
}
export default class BlinkIDReactNativeApp extends Component {
constructor(props) {
super(props);
this.state = {
showImageDocument: false,
resultImageDocument: '',
showImageFace: false,
resultImageFace: '',
showSuccessFrame: false,
successFrame: '',
results: '',
licenseKeyErrorMessage: ''
};
}
async scan() {
try {
// to scan EU driver's licenses, use EudlRecognizer
var eudlRecognizer = new BlinkIDReactNative.EudlRecognizer();
eudlRecognizer.returnFaceImage = true;
eudlRecognizer.returnFullDocumentImage = true;
// if you also want to obtain camera frame on which specific recognizer has
// finished its recognition, wrap it with SuccessFrameGrabberRecognizer and use
// the wrapper instead of original for building RecognizerCollection
var eudlSuccessFrameGrabber = new BlinkIDReactNative.SuccessFrameGrabberRecognizer(eudlRecognizer);
// to scan US Driver's licenses, use UsdlRecognizer
var usdlRecognizer = new BlinkIDReactNative.UsdlRecognizer();
var usdlSuccessFrameGrabber = new BlinkIDReactNative.SuccessFrameGrabberRecognizer(usdlRecognizer);
// to scan any machine readable travel document (passports, visa's and IDs with
// machine readable zone), use MrtdRecognizer
var mrtdRecognizer = new BlinkIDReactNative.MrtdRecognizer();
mrtdRecognizer.returnFullDocumentImage = true;
var mrtdSuccessFrameGrabber = new BlinkIDReactNative.SuccessFrameGrabberRecognizer(mrtdRecognizer);
const scanningResults = await BlinkIDReactNative.BlinkID.scanWithCamera(
new BlinkIDReactNative.DocumentOverlaySettings(),
new BlinkIDReactNative.RecognizerCollection([eudlSuccessFrameGrabber, usdlSuccessFrameGrabber, mrtdSuccessFrameGrabber]),
licenseKey
);
if (scanningResults) {
let newState = {
showImageDocument: false,
resultImageDocument: '',
showImageFace: false,
resultImageFace: '',
results: '',
showSuccessFrame: false,
successFrame: ''
};
for (let i = 0; i < scanningResults.length; ++i) {
let localState = this.handleResult(scanningResults[i]);
newState.showImageDocument = newState.showImageDocument || localState.showImageDocument;
if (localState.resultImageDocument) {
newState.resultImageDocument = localState.resultImageDocument;
}
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({ showImageDocument: false, resultImageDocument: '', showImageFace: false, resultImageFace: '', results: 'Scanning has been cancelled', showSuccessFrame: false,
successFrame: ''});
}
}
handleResult(result) {
let fieldDelim = ";\n";
var localState = {
showImageDocument: false,
resultImageDocument: '',
showImageFace: false,
resultImageFace: '',
results: '',
showSuccessFrame: false,
successFrame: ''
};
if (result instanceof BlinkIDReactNative.UsdlRecognizerResult) {
// handle USDL parsing result
let fields = result.fields
let USDLKeys = BlinkIDReactNative.UsdlKeys;
localState.results += /** Personal information */
"USDL version: " + fields[USDLKeys.StandardVersionNumber] + fieldDelim +
"Family name: " + fields[USDLKeys.CustomerFamilyName] + fieldDelim +
"First name: " + fields[USDLKeys.CustomerFirstName] + fieldDelim +
"Date of birth: " + fields[USDLKeys.DateOfBirth] + fieldDelim +
"Sex: " + fields[USDLKeys.Sex] + fieldDelim +
"Eye color: " + fields[USDLKeys.EyeColor] + fieldDelim +
"Height: " + fields[USDLKeys.Height] + fieldDelim +
"Street: " + fields[USDLKeys.AddressStreet] + fieldDelim +
"City: " + fields[USDLKeys.AddressCity] + fieldDelim +
"Jurisdiction: " + fields[USDLKeys.AddressJurisdictionCode] + fieldDelim +
"Postal code: " + fields[USDLKeys.AddressPostalCode] + fieldDelim +
/** License information */
"Issue date: " + fields[USDLKeys.DocumentIssueDate] + fieldDelim +
"Expiration date: " + fields[USDLKeys.DocumentExpirationDate] + fieldDelim +
"Issuer ID: " + fields[USDLKeys.IssuerIdentificationNumber] + fieldDelim +
"Jurisdiction version: " + fields[USDLKeys.JurisdictionVersionNumber] + fieldDelim +
"Vehicle class: " + fields[USDLKeys.JurisdictionVehicleClass] + fieldDelim +
"Restrictions: " + fields[USDLKeys.JurisdictionRestrictionCodes] + fieldDelim +
"Endorsments: " + fields[USDLKeys.JurisdictionEndorsementCodes] + fieldDelim +
"Customer ID: " + fields[USDLKeys.CustomerIdNumber] + fieldDelim;
} else if (result instanceof BlinkIDReactNative.MrtdRecognizerResult) {
let mrtdResult = result;
localState.results +=
"First name: " + mrtdResult.mrzResult.secondaryId + fieldDelim +
"Last name: " + mrtdResult.mrzResult.primaryId + fieldDelim +
"Nationality: " + mrtdResult.mrzResult.nationality + fieldDelim +
"Gender: " + mrtdResult.mrzResult.gender + fieldDelim +
"Date of birth: " +
mrtdResult.mrzResult.dateOfBirth.day + "." +
mrtdResult.mrzResult.dateOfBirth.month + "." +
mrtdResult.mrzResult.dateOfBirth.year + ".";
// Document image is returned as Base64 encoded JPEG
if (mrtdResult.fullDocumentImage) {
localState.showImageDocument = true;
localState.resultImageDocument = 'data:image/jpg;base64,' + mrtdResult.fullDocumentImage;
}
} else if (result instanceof BlinkIDReactNative.EudlRecognizerResult) {
localState.results +=
"First name: " + result.firstName + fieldDelim +
"Last name: " + result.lastName + fieldDelim +
"Address: " + result.address + fieldDelim +
"Personal number: " + result.personalNumber + fieldDelim +
"Driver number: " + result.driverNumber + fieldDelim;
// Document image is returned as Base64 encoded JPEG
if (result.fullDocumentImage) {
localState.showImageDocument = true;
localState.resultImageDocument = 'data:image/jpg;base64,' + result.fullDocumentImage;
}
// Face image is returned as Base64 encoded JPEG
if (result.faceImage) {
localState.showImageFace = true;
localState.resultImageFace = 'data:image/jpg;base64,' + result.faceImage;
}
} else if (result instanceof BlinkIDReactNative.SuccessFrameGrabberRecognizerResult) {
// first handle slave result, and then add success frame image
localState = this.handleResult(result.slaveRecognizerResult);
// success frame is returned as Base64 encoded JPEG
if (result.successFrame) {
localState.showSuccessFrame = true;
localState.successFrame = 'data:image/jpg;base64,' + result.successFrame;
}
}
return localState;
}
render() {
let displayImageDocument = this.state.resultImageDocument;
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>
<ScrollView
automaticallyAdjustContentInsets={false}
scrollEventThrottle={200}y>
{renderIf(this.state.showImageDocument,
<View style={styles.imageContainer}>
<Image
resizeMode='contain'
source={{uri: displayImageDocument, 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('BlinkIDReactNative', () => BlinkIDReactNativeApp);