-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathinitialState.ts
53 lines (50 loc) · 1.13 KB
/
initialState.ts
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
import { Dimensions } from 'react-native';
export interface CameraOptions {
flash?: string | number;
zoom?: number;
autoFocus?: string | boolean | number;
autoFocusPoint?: {
normalized: {
x: number;
y: number;
};
drawRectPosition: {
x: number;
y: number;
};
};
focusDepth?: number;
type?: string | number;
whiteBalance?: number | string;
ratio?: string;
isRecording?: boolean;
canDetectFaces?: boolean;
canDetectText?: boolean;
canDetectBarcode?: boolean;
faces?: any[];
textBlocks?: any[];
barcodes?: any[];
}
export const initialCameraState: CameraOptions = {
flash: 'on',
zoom: 0,
autoFocus: 'on',
autoFocusPoint: {
normalized: { x: 0.5, y: 0.5 }, // normalized values required for autoFocusPointOfInterest
drawRectPosition: {
x: Dimensions.get('window').width * 0.5 - 32,
y: Dimensions.get('window').height * 0.5 - 32,
},
},
focusDepth: 0,
type: 'back',
whiteBalance: 'auto',
ratio: '16:9',
isRecording: false,
canDetectFaces: false,
canDetectText: false,
canDetectBarcode: false,
faces: [],
textBlocks: [],
barcodes: [],
};