forked from mebjas/html5-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
html5-qrcode.ts
1595 lines (1447 loc) · 58.8 KB
/
html5-qrcode.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
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @module
* HTML5 QR code & barcode scanning library.
* - Decode QR Code.
* - Decode different kinds of barcodes.
* - Decode using web cam, smart phone camera or using images on local file
* system.
*
* @author mebjas <[email protected]>
*
* The word "QR Code" is registered trademark of DENSO WAVE INCORPORATED
* http://www.denso-wave.com/qrcode/faqpatent-e.html
*/
import {
QrcodeErrorCallback,
QrcodeSuccessCallback,
Logger,
BaseLoggger,
Html5QrcodeResultFactory,
Html5QrcodeErrorFactory,
Html5QrcodeSupportedFormats,
RobustQrcodeDecoderAsync,
isValidHtml5QrcodeSupportedFormats,
Html5QrcodeConstants,
Html5QrcodeResult,
isNullOrUndefined,
QrDimensions,
QrDimensionFunction
} from "./core";
import { Html5QrcodeStrings } from "./strings";
import { VideoConstraintsUtil } from "./utils";
import { Html5QrcodeShim } from "./code-decoder";
import { CameraFactory } from "./camera/factories";
import {
CameraDevice,
CameraCapabilities,
CameraRenderingOptions,
RenderedCamera,
RenderingCallbacks
} from "./camera/core";
import { CameraRetriever } from "./camera/retriever";
import { ExperimentalFeaturesConfig } from "./experimental-features";
import {
StateManagerProxy,
StateManagerFactory,
StateManagerTransaction,
Html5QrcodeScannerState
} from "./state-manager";
class Constants extends Html5QrcodeConstants {
//#region static constants
static DEFAULT_WIDTH = 300;
static DEFAULT_WIDTH_OFFSET = 2;
static FILE_SCAN_MIN_HEIGHT = 300;
static FILE_SCAN_HIDDEN_CANVAS_PADDING = 100;
static MIN_QR_BOX_SIZE = 50;
static SHADED_LEFT = 1;
static SHADED_RIGHT = 2;
static SHADED_TOP = 3;
static SHADED_BOTTOM = 4;
static SHADED_REGION_ELEMENT_ID = "qr-shaded-region";
static VERBOSE = false;
static BORDER_SHADER_DEFAULT_COLOR = "#ffffff";
static BORDER_SHADER_MATCH_COLOR = "rgb(90, 193, 56)";
//#endregion
}
/**
* Interface for configuring {@link Html5Qrcode} class instance.
*/
export interface Html5QrcodeConfigs {
/**
* Array of formats to support of type {@link Html5QrcodeSupportedFormats}.
*
* All invalid values would be ignored. If null or underfined all supported
* formats will be used for scanning. Unless you want to limit the scan to
* only certain formats or want to improve performance, you should not set
* this value.
*/
formatsToSupport?: Array<Html5QrcodeSupportedFormats> | undefined;
/**
* {@link BarcodeDetector} is being implemented by browsers at the moment.
* It has very limited browser support but as it gets available it could
* enable faster native code scanning experience.
*
* Set this flag to true, to enable using {@link BarcodeDetector} if
* supported. This is true by default.
*
* Documentations:
* - https://developer.mozilla.org/en-US/docs/Web/API/BarcodeDetector
* - https://web.dev/shape-detection/#barcodedetector
*/
useBarCodeDetectorIfSupported?: boolean | undefined;
/**
* Config for experimental features.
*
* Everything is false by default.
*/
experimentalFeatures?: ExperimentalFeaturesConfig | undefined;
}
/**
* Interface for full configuration of {@link Html5Qrcode}.
*
* Notes: Ideally we don't need to have two interfaces for this purpose, but
* since the public APIs before version 2.0.8 allowed passing a boolean verbose
* flag to constructor we need to allow users to pass Html5QrcodeFullConfig or
* boolean flag to be backward compatible.
* In future versions these two interfaces can be merged.
*/
export interface Html5QrcodeFullConfig extends Html5QrcodeConfigs {
/**
* If true, all logs would be printed to console. False by default.
*/
verbose: boolean | undefined;
}
/**
* Configuration type for scanning QR code with camera.
*/
export interface Html5QrcodeCameraScanConfig {
/**
* Optional, Expected framerate of qr code scanning. example `{ fps: 2 }` means the
* scanning would be done every `500 ms`.
*/
fps: number | undefined;
/**
* Optional, edge size, dimension or calculator function for QR scanning
* box, the value or computed value should be smaller than the width and
* height of the full region.
*
* This would make the scanner look like this:
* ----------------------
* |********************|
* |******,,,,,,,,,*****| <--- shaded region
* |******| |*****| <--- non shaded region would be
* |******| |*****| used for QR code scanning.
* |******|_______|*****|
* |********************|
* |********************|
* ----------------------
*
* Instance of {@link QrDimensions} can be passed to construct a non
* square rendering of scanner box. You can also pass in a function of type
* {@link QrDimensionFunction} that takes in the width and height of the
* video stream and return QR box size of type {@link QrDimensions}.
*
* If this value is not set, no shaded QR box will be rendered and the
* scanner will scan the entire area of video stream.
*/
qrbox?: number | QrDimensions | QrDimensionFunction | undefined;
/**
* Optional, Desired aspect ratio for the video feed. Ideal aspect ratios
* are 4:3 or 16:9. Passing very wrong aspect ratio could lead to video feed
* not showing up.
*/
aspectRatio?: number | undefined;
/**
* Optional, if `true` flipped QR Code won't be scanned. Only use this
* if you are sure the camera cannot give mirrored feed if you are facing
* performance constraints.
*/
disableFlip?: boolean | undefined;
/**
* Optional, @beta(this config is not well supported yet).
*
* Important: When passed this will override other parameters like
* 'cameraIdOrConfig' or configurations like 'aspectRatio'.
* 'videoConstraints' should be of type {@link MediaTrackConstraints} as
* defined in
* https://developer.mozilla.org/en-US/docs/Web/API/MediaTrackConstraints
* and is used to specify a variety of video or camera controls like:
* aspectRatio, facingMode, frameRate, etc.
*/
videoConstraints?: MediaTrackConstraints | undefined;
}
/**
* Internal implementation of {@link Html5QrcodeConfig} with util & factory
* methods.
*
* @hidden
*/
class InternalHtml5QrcodeConfig implements Html5QrcodeCameraScanConfig {
public readonly fps: number;
public readonly disableFlip: boolean;
public readonly qrbox: number | QrDimensions | QrDimensionFunction | undefined;
public readonly aspectRatio: number | undefined;
public readonly videoConstraints: MediaTrackConstraints | undefined;
private logger: Logger;
private constructor(
config: Html5QrcodeCameraScanConfig | undefined,
logger: Logger) {
this.logger = logger;
this.fps = Constants.SCAN_DEFAULT_FPS;
if (!config) {
this.disableFlip = Constants.DEFAULT_DISABLE_FLIP;
} else {
if (config.fps) {
this.fps = config.fps;
}
this.disableFlip = config.disableFlip === true;
this.qrbox = config.qrbox;
this.aspectRatio = config.aspectRatio;
this.videoConstraints = config.videoConstraints;
}
}
public isMediaStreamConstraintsValid(): boolean {
if (!this.videoConstraints) {
this.logger.logError(
"Empty videoConstraints", /* experimental= */ true);
return false;
}
return VideoConstraintsUtil.isMediaStreamConstraintsValid(
this.videoConstraints, this.logger);
}
public isShadedBoxEnabled(): boolean {
return !isNullOrUndefined(this.qrbox);
}
/**
* Create instance of {@link Html5QrcodeCameraScanConfig}.
*
* Create configuration by merging default and input settings.
*/
static create(config: Html5QrcodeCameraScanConfig | undefined, logger: Logger)
: InternalHtml5QrcodeConfig {
return new InternalHtml5QrcodeConfig(config, logger);
}
}
/** @hidden */
interface QrcodeRegionBounds {
x: number,
y: number,
width: number,
height: number
}
/**
* Low level APIs for building web based QR and Barcode Scanner.
*
* Supports APIs for camera as well as file based scanning.
*
* Depending of the configuration, the class will help render code
* scanning UI on the provided parent HTML container.
*/
export class Html5Qrcode {
//#region Private fields.
private readonly logger: Logger;
private readonly elementId: string;
private readonly verbose: boolean;
private readonly qrcode: RobustQrcodeDecoderAsync;
private shouldScan: boolean;
// Nullable elements
// TODO(mebjas): Reduce the state-fulness of this mammoth class, by splitting
// into independent classes for better separation of concerns and reducing
// error prone nature of a large stateful class.
private element: HTMLElement | null = null;
private canvasElement: HTMLCanvasElement | null = null;
private scannerPausedUiElement: HTMLDivElement | null = null;
private hasBorderShaders: boolean | null = null;
private borderShaders: Array<HTMLElement> | null = null;
private qrMatch: boolean | null = null;
private renderedCamera: RenderedCamera | null = null;
private foreverScanTimeout: any;
private qrRegion: QrcodeRegionBounds | null = null;
private context: CanvasRenderingContext2D | null = null;
private lastScanImageFile: string | null = null;
//#endregion
private stateManagerProxy: StateManagerProxy;
// TODO(mebjas): deprecate this.
/** @hidden */
public isScanning: boolean = false;
/**
* Initialize the code scanner.
*
* @param elementId Id of the HTML element.
* @param configOrVerbosityFlag optional, config object of type {@link
* Html5QrcodeFullConfig} or a boolean verbosity flag (to maintain backward
* compatibility). If nothing is passed, default values would be used.
* If a boolean value is used, it'll be used to set verbosity. Pass a
* config value to configure the Html5Qrcode scanner as per needs.
*
* Use of `configOrVerbosityFlag` as a boolean value is being
* deprecated since version 2.0.7.
*
* TODO(mebjas): Deprecate the verbosity boolean flag completely.
*/
public constructor(elementId: string,
configOrVerbosityFlag?: boolean | Html5QrcodeFullConfig | undefined) {
if (!document.getElementById(elementId)) {
throw `HTML Element with id=${elementId} not found`;
}
this.elementId = elementId;
this.verbose = false;
let experimentalFeatureConfig : ExperimentalFeaturesConfig | undefined;
let configObject: Html5QrcodeFullConfig | undefined;
if (typeof configOrVerbosityFlag == "boolean") {
this.verbose = configOrVerbosityFlag === true;
} else if (configOrVerbosityFlag) {
configObject = configOrVerbosityFlag;
this.verbose = configObject.verbose === true;
experimentalFeatureConfig = configObject.experimentalFeatures;
}
this.logger = new BaseLoggger(this.verbose);
this.qrcode = new Html5QrcodeShim(
this.getSupportedFormats(configOrVerbosityFlag),
this.getUseBarCodeDetectorIfSupported(configObject),
this.verbose,
this.logger);
this.foreverScanTimeout;
this.shouldScan = true;
this.stateManagerProxy = StateManagerFactory.create();
}
//#region start()
/**
* Start scanning QR codes or bar codes for a given camera.
*
* @param cameraIdOrConfig Identifier of the camera, it can either be the
* camera id retrieved from {@link Html5Qrcode#getCameras()} method or
* object with facing mode constraint.
* @param configuration Extra configurations to tune the code scanner.
* @param qrCodeSuccessCallback Callback called when an instance of a QR
* code or any other supported bar code is found.
* @param qrCodeErrorCallback Callback called in cases where no instance of
* QR code or any other supported bar code is found.
*
* @returns Promise for starting the scan. The Promise can fail if the user
* doesn't grant permission or some API is not supported by the browser.
*/
public start(
cameraIdOrConfig: string | MediaTrackConstraints,
configuration: Html5QrcodeCameraScanConfig | undefined,
qrCodeSuccessCallback: QrcodeSuccessCallback | undefined,
qrCodeErrorCallback: QrcodeErrorCallback | undefined,
): Promise<null> {
// Code will be consumed as javascript.
if (!cameraIdOrConfig) {
throw "cameraIdOrConfig is required";
}
if (!qrCodeSuccessCallback
|| typeof qrCodeSuccessCallback != "function") {
throw "qrCodeSuccessCallback is required and should be a function.";
}
let qrCodeErrorCallbackInternal: QrcodeErrorCallback;
if (qrCodeErrorCallback) {
qrCodeErrorCallbackInternal = qrCodeErrorCallback;
} else {
qrCodeErrorCallbackInternal
= this.verbose ? this.logger.log : () => {};
}
const internalConfig = InternalHtml5QrcodeConfig.create(
configuration, this.logger);
this.clearElement();
// Check if videoConstraints is passed and valid
let videoConstraintsAvailableAndValid = false;
if (internalConfig.videoConstraints) {
if (!internalConfig.isMediaStreamConstraintsValid()) {
this.logger.logError(
"'videoConstraints' is not valid 'MediaStreamConstraints, "
+ "it will be ignored.'",
/* experimental= */ true);
} else {
videoConstraintsAvailableAndValid = true;
}
}
const areVideoConstraintsEnabled = videoConstraintsAvailableAndValid;
// qr shaded box
const element = document.getElementById(this.elementId)!;
const rootElementWidth = element.clientWidth
? element.clientWidth : Constants.DEFAULT_WIDTH;
element.style.position = "relative";
this.shouldScan = true;
this.element = element;
const $this = this;
const toScanningStateChangeTransaction: StateManagerTransaction
= this.stateManagerProxy.startTransition(
Html5QrcodeScannerState.SCANNING);
return new Promise((resolve, reject) => {
const videoConstraints = areVideoConstraintsEnabled
? internalConfig.videoConstraints
: $this.createVideoConstraints(cameraIdOrConfig);
if (!videoConstraints) {
toScanningStateChangeTransaction.cancel();
reject("videoConstraints should be defined");
return;
}
let cameraRenderingOptions: CameraRenderingOptions = {};
if (!areVideoConstraintsEnabled || internalConfig.aspectRatio) {
cameraRenderingOptions.aspectRatio = internalConfig.aspectRatio;
}
let renderingCallbacks: RenderingCallbacks = {
onRenderSurfaceReady: (viewfinderWidth, viewfinderHeight) => {
$this.setupUi(
viewfinderWidth, viewfinderHeight, internalConfig);
$this.isScanning = true;
$this.foreverScan(
internalConfig,
qrCodeSuccessCallback,
qrCodeErrorCallbackInternal!);
}
};
// TODO(minhazav): Flatten this flow.
CameraFactory.failIfNotSupported().then((factory) => {
factory.create(videoConstraints).then((camera) => {
return camera.render(
this.element!, cameraRenderingOptions, renderingCallbacks)
.then((renderedCamera) => {
$this.renderedCamera = renderedCamera;
toScanningStateChangeTransaction.execute();
resolve(/* Void */ null);
})
.catch((error) => {
toScanningStateChangeTransaction.cancel();
reject(error);
});
}).catch((error) => {
toScanningStateChangeTransaction.cancel();
reject(Html5QrcodeStrings.errorGettingUserMedia(error));
});
}).catch((_) => {
toScanningStateChangeTransaction.cancel();
reject(Html5QrcodeStrings.cameraStreamingNotSupported());
});
});
}
//#endregion
//#region Other state related public APIs
/**
* Pauses the ongoing scan.
*
* @param shouldPauseVideo (Optional, default = false) If true the
* video will be paused.
*
* @throws error if method is called when scanner is not in scanning state.
*/
public pause(shouldPauseVideo?: boolean) {
if (!this.stateManagerProxy.isStrictlyScanning()) {
throw "Cannot pause, scanner is not scanning.";
}
this.stateManagerProxy.directTransition(Html5QrcodeScannerState.PAUSED);
this.showPausedState();
if (isNullOrUndefined(shouldPauseVideo) || shouldPauseVideo !== true) {
shouldPauseVideo = false;
}
if (shouldPauseVideo && this.renderedCamera) {
this.renderedCamera.pause();
}
}
/**
* Resumes the paused scan.
*
* If the video was previously paused by setting `shouldPauseVideo``
* to `true` in {@link Html5Qrcode#pause(shouldPauseVideo)}, calling
* this method will resume the video.
*
* Note: with this caller will start getting results in success and error
* callbacks.
*
* @throws error if method is called when scanner is not in paused state.
*/
public resume() {
if (!this.stateManagerProxy.isPaused()) {
throw "Cannot result, scanner is not paused.";
}
if (!this.renderedCamera) {
throw "renderedCamera doesn't exist while trying resume()";
}
const $this = this;
const transitionToScanning = () => {
$this.stateManagerProxy.directTransition(
Html5QrcodeScannerState.SCANNING);
$this.hidePausedState();
}
if (!this.renderedCamera.isPaused()) {
transitionToScanning();
return;
}
this.renderedCamera.resume(() => {
// Transition state, when the video playback has resumed.
transitionToScanning();
});
}
/**
* Gets state of the camera scan.
*
* @returns state of type {@link ScannerState}.
*/
public getState(): Html5QrcodeScannerState {
return this.stateManagerProxy.getState();
}
/**
* Stops streaming QR Code video and scanning.
*
* @returns Promise for safely closing the video stream.
*/
public stop(): Promise<void> {
if (!this.stateManagerProxy.isScanning()) {
throw "Cannot stop, scanner is not running or paused.";
}
const toStoppedStateTransaction: StateManagerTransaction
= this.stateManagerProxy.startTransition(
Html5QrcodeScannerState.NOT_STARTED);
this.shouldScan = false;
if (this.foreverScanTimeout) {
clearTimeout(this.foreverScanTimeout);
}
// Removes the shaded region if exists.
const removeQrRegion = () => {
if (!this.element) {
return;
}
let childElement = document.getElementById(Constants.SHADED_REGION_ELEMENT_ID);
if (childElement) {
this.element.removeChild(childElement);
}
};
let $this = this;
return this.renderedCamera!.close().then(() => {
$this.renderedCamera = null;
if ($this.element) {
$this.element.removeChild($this.canvasElement!);
$this.canvasElement = null;
}
removeQrRegion();
if ($this.qrRegion) {
$this.qrRegion = null;
}
if ($this.context) {
$this.context = null;
}
toStoppedStateTransaction.execute();
$this.hidePausedState();
$this.isScanning = false;
return Promise.resolve();
});
}
//#endregion
//#region File scan related public APIs
/**
* Scans an Image File for QR Code.
*
* This feature is mutually exclusive to camera-based scanning, you should
* call stop() if the camera-based scanning was ongoing.
*
* @param imageFile a local file with Image content.
* @param showImage if true the Image will be rendered on given
* element.
*
* @returns Promise with decoded QR code string on success and error message
* on failure. Failure could happen due to different reasons:
* 1. QR Code decode failed because enough patterns not found in image.
* 2. Input file was not image or unable to load the image or other image
* load errors.
*/
public scanFile(
imageFile: File, /* default=true */ showImage?: boolean): Promise<string> {
return this.scanFileV2(imageFile, showImage)
.then((html5qrcodeResult) => html5qrcodeResult.decodedText);
}
/**
* Scans an Image File for QR Code & returns {@link Html5QrcodeResult}.
*
* This feature is mutually exclusive to camera-based scanning, you should
* call stop() if the camera-based scanning was ongoing.
*
* @param imageFile a local file with Image content.
* @param showImage if true the Image will be rendered on given
* element.
*
* @returns Promise which resolves with result of type
* {@link Html5QrcodeResult}.
*
* @beta This is a WIP method, it's available as a public method but not
* documented.
* TODO(mebjas): Replace scanFile with ScanFileV2
*/
public scanFileV2(imageFile: File, /* default=true */ showImage?: boolean)
: Promise<Html5QrcodeResult> {
if (!imageFile || !(imageFile instanceof File)) {
throw "imageFile argument is mandatory and should be instance "
+ "of File. Use 'event.target.files[0]'.";
}
if (isNullOrUndefined(showImage)) {
showImage = true;
}
if (!this.stateManagerProxy.canScanFile()) {
throw "Cannot start file scan - ongoing camera scan";
}
return new Promise((resolve, reject) => {
this.possiblyCloseLastScanImageFile();
this.clearElement();
this.lastScanImageFile = URL.createObjectURL(imageFile);
const inputImage = new Image;
inputImage.onload = () => {
const imageWidth = inputImage.width;
const imageHeight = inputImage.height;
const element = document.getElementById(this.elementId)!;
const containerWidth = element.clientWidth
? element.clientWidth : Constants.DEFAULT_WIDTH;
// No default height anymore.
const containerHeight = Math.max(
element.clientHeight ? element.clientHeight : imageHeight,
Constants.FILE_SCAN_MIN_HEIGHT);
const config = this.computeCanvasDrawConfig(
imageWidth, imageHeight, containerWidth, containerHeight);
if (showImage) {
const visibleCanvas = this.createCanvasElement(
containerWidth, containerHeight, "qr-canvas-visible");
visibleCanvas.style.display = "inline-block";
element.appendChild(visibleCanvas);
const context = visibleCanvas.getContext("2d");
if (!context) {
throw "Unable to get 2d context from canvas";
}
context.canvas.width = containerWidth;
context.canvas.height = containerHeight;
// More reference
// https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/drawImage
context.drawImage(
inputImage,
/* sx= */ 0,
/* sy= */ 0,
/* sWidth= */ imageWidth,
/* sHeight= */ imageHeight,
/* dx= */ config.x,
/* dy= */ config.y,
/* dWidth= */ config.width,
/* dHeight= */ config.height);
}
// Hidden canvas should be at-least as big as the image.
// This could get really troublesome for large images like 12MP
// images or 48MP images captured on phone.
let padding = Constants.FILE_SCAN_HIDDEN_CANVAS_PADDING;
let hiddenImageWidth = Math.max(inputImage.width, config.width);
let hiddenImageHeight = Math.max(inputImage.height, config.height);
let hiddenCanvasWidth = hiddenImageWidth + 2 * padding;
let hiddenCanvasHeight = hiddenImageHeight + 2 * padding;
// Try harder for file scan.
// TODO(minhazav): Fallback to mirroring, 90 degree rotation and
// color inversion.
const hiddenCanvas = this.createCanvasElement(
hiddenCanvasWidth, hiddenCanvasHeight);
element.appendChild(hiddenCanvas);
const context = hiddenCanvas.getContext("2d");
if (!context) {
throw "Unable to get 2d context from canvas";
}
context.canvas.width = hiddenCanvasWidth;
context.canvas.height = hiddenCanvasHeight;
context.drawImage(
inputImage,
/* sx= */ 0,
/* sy= */ 0,
/* sWidth= */ imageWidth,
/* sHeight= */ imageHeight,
/* dx= */ padding,
/* dy= */ padding,
/* dWidth= */ hiddenImageWidth,
/* dHeight= */ hiddenImageHeight);
try {
this.qrcode.decodeRobustlyAsync(hiddenCanvas)
.then((result) => {
resolve(
Html5QrcodeResultFactory.createFromQrcodeResult(
result));
})
.catch(reject);
} catch (exception) {
reject(`QR code parse error, error = ${exception}`);
}
};
inputImage.onerror = reject;
inputImage.onabort = reject;
inputImage.onstalled = reject;
inputImage.onsuspend = reject;
inputImage.src = URL.createObjectURL(imageFile);
});
}
//#endregion
/**
* Clears the existing canvas.
*
* Note: in case of ongoing web cam based scan, it needs to be explicitly
* closed before calling this method, else it will throw exception.
*/
public clear(): void {
this.clearElement();
}
/**
* Returns list of {@link CameraDevice} supported by the device.
*
* @returns array of camera devices on success.
*/
public static getCameras(): Promise<Array<CameraDevice>> {
return CameraRetriever.retrieve();
}
/**
* Returns the capabilities of the running video track.
*
* Read more: https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrack/getConstraints
*
* Important:
* 1. Must be called only if the camera based scanning is in progress.
*
* @returns capabilities of the running camera.
* @throws error if the scanning is not in running state.
*/
public getRunningTrackCapabilities(): MediaTrackCapabilities {
return this.getRenderedCameraOrFail().getRunningTrackCapabilities();
}
/**
* Returns the object containing the current values of each constrainable
* property of the running video track.
*
* Read more: https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamTrack/getSettings
*
* Important:
* 1. Must be called only if the camera based scanning is in progress.
*
* @returns settings of the running media track.
*
* @throws error if the scanning is not in running state.
*/
public getRunningTrackSettings(): MediaTrackSettings {
return this.getRenderedCameraOrFail().getRunningTrackSettings();
}
/**
* Returns {@link CameraCapabilities} of the running video track.
*
* TODO(minhazav): Document this API, currently hidden.
*
* @returns capabilities of the running camera.
* @throws error if the scanning is not in running state.
*/
public getRunningTrackCameraCapabilities(): CameraCapabilities {
return this.getRenderedCameraOrFail().getCapabilities();
}
/**
* Apply a video constraints on running video track from camera.
*
* Important:
* 1. Must be called only if the camera based scanning is in progress.
* 2. Changing aspectRatio while scanner is running is not yet supported.
*
* @param {MediaTrackConstraints} specifies a variety of video or camera
* controls as defined in
* https://developer.mozilla.org/en-US/docs/Web/API/MediaTrackConstraints
* @returns a Promise which succeeds if the passed constraints are applied,
* fails otherwise.
* @throws error if the scanning is not in running state.
*/
public applyVideoConstraints(videoConstaints: MediaTrackConstraints)
: Promise<void> {
if (!videoConstaints) {
throw "videoConstaints is required argument.";
} else if (!VideoConstraintsUtil.isMediaStreamConstraintsValid(
videoConstaints, this.logger)) {
throw "invalid videoConstaints passed, check logs for more details";
}
return this.getRenderedCameraOrFail().applyVideoConstraints(
videoConstaints);
}
//#region Private methods.
private getRenderedCameraOrFail() {
if (this.renderedCamera == null) {
throw "Scanning is not in running state, call this API only when"
+ " QR code scanning using camera is in running state.";
}
return this.renderedCamera!;
}
/**
* Construct list of supported formats and returns based on input args.
* `configOrVerbosityFlag` optional, config object of type {@link
* Html5QrcodeFullConfig} or a boolean verbosity flag (to maintain backward
* compatibility). If nothing is passed, default values would be used.
* If a boolean value is used, it'll be used to set verbosity. Pass a
* config value to configure the Html5Qrcode scanner as per needs.
*
* Use of `configOrVerbosityFlag` as a boolean value is being
* deprecated since version 2.0.7.
*
* TODO(mebjas): Deprecate the verbosity boolean flag completely.
*/
private getSupportedFormats(
configOrVerbosityFlag: boolean | Html5QrcodeFullConfig | undefined)
: Array<Html5QrcodeSupportedFormats> {
const allFormats: Array<Html5QrcodeSupportedFormats> = [
Html5QrcodeSupportedFormats.QR_CODE,
Html5QrcodeSupportedFormats.AZTEC,
Html5QrcodeSupportedFormats.CODABAR,
Html5QrcodeSupportedFormats.CODE_39,
Html5QrcodeSupportedFormats.CODE_93,
Html5QrcodeSupportedFormats.CODE_128,
Html5QrcodeSupportedFormats.DATA_MATRIX,
Html5QrcodeSupportedFormats.MAXICODE,
Html5QrcodeSupportedFormats.ITF,
Html5QrcodeSupportedFormats.EAN_13,
Html5QrcodeSupportedFormats.EAN_8,
Html5QrcodeSupportedFormats.PDF_417,
Html5QrcodeSupportedFormats.RSS_14,
Html5QrcodeSupportedFormats.RSS_EXPANDED,
Html5QrcodeSupportedFormats.UPC_A,
Html5QrcodeSupportedFormats.UPC_E,
Html5QrcodeSupportedFormats.UPC_EAN_EXTENSION,
];
if (!configOrVerbosityFlag
|| typeof configOrVerbosityFlag == "boolean") {
return allFormats;
}
if (!configOrVerbosityFlag.formatsToSupport) {
return allFormats;
}
if (!Array.isArray(configOrVerbosityFlag.formatsToSupport)) {
throw "configOrVerbosityFlag.formatsToSupport should be undefined "
+ "or an array.";
}
if (configOrVerbosityFlag.formatsToSupport.length === 0) {
throw "Atleast 1 formatsToSupport is needed.";
}
const supportedFormats: Array<Html5QrcodeSupportedFormats> = [];
for (const format of configOrVerbosityFlag.formatsToSupport) {
if (isValidHtml5QrcodeSupportedFormats(format)) {
supportedFormats.push(format);
} else {
this.logger.warn(
`Invalid format: ${format} passed in config, ignoring.`);
}
}
if (supportedFormats.length === 0) {
throw "None of formatsToSupport match supported values.";
}
return supportedFormats;
}
/**
* Returns `true` if `useBarCodeDetectorIfSupported` is
* enabled in the config.
*/
/*eslint complexity: ["error", 10]*/
private getUseBarCodeDetectorIfSupported(
config: Html5QrcodeConfigs | undefined) : boolean {
// Default value is true.
if (isNullOrUndefined(config)) {
return true;
}
if (!isNullOrUndefined(config!.useBarCodeDetectorIfSupported)) {
// Default value is false.
return config!.useBarCodeDetectorIfSupported !== false;
}
if (isNullOrUndefined(config!.experimentalFeatures)) {
return true;
}
let experimentalFeatures = config!.experimentalFeatures!;
if (isNullOrUndefined(
experimentalFeatures.useBarCodeDetectorIfSupported)) {
return true;
}
return experimentalFeatures.useBarCodeDetectorIfSupported !== false;
}
/**
* Validates if the passed config for qrbox is correct.
*/
private validateQrboxSize(
viewfinderWidth: number,
viewfinderHeight: number,
internalConfig: InternalHtml5QrcodeConfig) {
const qrboxSize = internalConfig.qrbox!;
this.validateQrboxConfig(qrboxSize);
let qrDimensions = this.toQrdimensions(
viewfinderWidth, viewfinderHeight, qrboxSize);
const validateMinSize = (size: number) => {
if (size < Constants.MIN_QR_BOX_SIZE) {
throw "minimum size of 'config.qrbox' dimension value is"
+ ` ${Constants.MIN_QR_BOX_SIZE}px.`;
}
};
/**
* The 'config.qrbox.width' shall be overriden if it's larger than the
* width of the root element.
*
* Based on the verbosity settings, this will be logged to the logger.
*
* @param configWidth the width of qrbox set by users in the config.
*/
const correctWidthBasedOnRootElementSize = (configWidth: number) => {
if (configWidth > viewfinderWidth) {
this.logger.warn("`qrbox.width` or `qrbox` is larger than the"
+ " width of the root element. The width will be truncated"
+ " to the width of root element.");
configWidth = viewfinderWidth;
}
return configWidth;
};
validateMinSize(qrDimensions.width);
validateMinSize(qrDimensions.height);
qrDimensions.width = correctWidthBasedOnRootElementSize(
qrDimensions.width);
// Note: In this case if the height of the qrboxSize turns out to be
// greater than the height of the root element (which should later be
// based on the aspect ratio of the camera stream), it would be silently
// ignored with a warning.
}
/**
* Validates if the `qrboxSize` is a valid value.
*
* It's expected to be either a number or of type {@link QrDimensions}.