@@ -9,9 +9,9 @@ interface cameraOption {
9
9
mirror ?: boolean ;
10
10
targetCanvas ?: HTMLCanvasElement ;
11
11
onSuccess ?: ( ) => void ;
12
- onError ?: NavigatorUserMediaErrorCallback ;
12
+ onError ?: ( ) => void ;
13
13
onNotSupported ?: ( ) => void ;
14
- onFrame ?: ( canvas : HTMLCanvasElement ) => void ;
14
+ onFrame ?: ( target : HTMLCanvasElement | HTMLVideoElement ) => void ;
15
15
switchError ?: ( ) => void ;
16
16
videoLoaded ?: ( ) => void ;
17
17
}
@@ -42,8 +42,8 @@ export default class Camera {
42
42
private canvas : HTMLCanvasElement ;
43
43
private context : CanvasRenderingContext2D ;
44
44
private requestAnimationId ;
45
- private stream : any ;
46
- private videoDevices : any ;
45
+ private stream : MediaStream ;
46
+ private videoDevices : string [ ] ;
47
47
private videoDeviceId : string ;
48
48
private currentMode : string ;
49
49
private isIOS : boolean ;
@@ -52,18 +52,19 @@ export default class Camera {
52
52
const ua = navigator . userAgent ;
53
53
this . isIOS = ! ! ua . match ( / \( i [ ^ ; ] + ; ( U ; ) ? C P U .+ M a c O S X / ) ;
54
54
this . video . width = this . options . width || this . video . clientWidth ;
55
- if ( this . options . height ) {
56
- this . video . height = this . options . height ;
57
- }
55
+ this . video . height = this . options . height || this . video . clientHeight ;
58
56
// 枚举设备摄像头
59
57
this . enumerateDevices ( ) ;
60
58
}
61
59
62
60
private handleStream ( ) {
63
61
const videoConstraints = {
64
62
deviceId : { exact : this . videoDeviceId } ,
65
- facingMode : this . currentMode
63
+ facingMode : this . currentMode ,
64
+ width : this . video . width ,
65
+ height : this . video . height
66
66
} ;
67
+
67
68
if ( navigator . mediaDevices && navigator . mediaDevices . getUserMedia ) {
68
69
navigator . mediaDevices . getUserMedia ( {
69
70
video : videoConstraints
@@ -111,7 +112,7 @@ export default class Camera {
111
112
} )
112
113
. catch ( err => {
113
114
this . options . onNotSupported && this . options . onNotSupported ( ) ;
114
- console . log ( err . name + ': ' + err . message ) ;
115
+ console . error ( err . name + ': ' + err . message ) ;
115
116
} ) ;
116
117
}
117
118
@@ -122,7 +123,8 @@ export default class Camera {
122
123
if ( 'srcObject' in this . video ) {
123
124
try {
124
125
this . video . srcObject = this . stream ;
125
- } catch ( error ) {
126
+ }
127
+ catch ( error ) {
126
128
this . video . src = URL . createObjectURL ( this . stream ) || this . stream ;
127
129
}
128
130
}
@@ -134,6 +136,7 @@ export default class Camera {
134
136
else {
135
137
this . video . height = this . video . clientHeight ;
136
138
}
139
+
137
140
this . options . videoLoaded && this . options . videoLoaded ( ) ;
138
141
this . initCanvas ( ) ;
139
142
} ) ;
@@ -162,16 +165,18 @@ export default class Camera {
162
165
163
166
private videoRequestAnimationFrame ( ) {
164
167
const drawImage = ( ) => {
165
- this . context . drawImage ( this . video , 0 , 0 , this . video . width , this . video . height ) ;
166
- this . options . onFrame ( this . canvas ) ;
167
- this . requestAnimationId = window . requestAnimationFrame ( drawImage ) ;
168
+ if ( this . context ) {
169
+ this . context . drawImage ( this . video , 0 , 0 , this . video . width , this . video . height ) ;
170
+ }
171
+ this . options . onFrame ( this . video ) ;
172
+ this . requestAnimationId = requestAnimationFrame ( drawImage ) ;
168
173
} ;
169
174
drawImage ( ) ;
170
175
}
171
176
172
177
public start ( ) {
173
178
this . video && this . video . play ( ) ;
174
- if ( ! this . canvas || this . requestAnimationId ) {
179
+ if ( this . requestAnimationId ) {
175
180
return ;
176
181
}
177
182
this . videoRequestAnimationFrame ( ) ;
0 commit comments