Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
This page is applicable to version 8.2.3
Javascript API Reference - BarcodeReader
Properties
Property | Description |
---|---|
_bUseFullFeature |
If set to false , use the compact-featured WASM module. |
bDestroyed |
Indicates whether a BarcodeReader object has been destroyed. |
bSaveOriCanvas |
If set to true , save the original image to canvas. |
oriCanvas |
The original canvas element. |
_bUseFullFeature
Set usage of compact or full featured SDK. If set to false
, use the compact-featured WASM module.
Note: this API may change in the future.
Dynamsoft.BarcodeReader._bUseFullFeature = Boolean
Default Value
false
for web
Sample
Dynamsoft.BarcodeReader._bUseFullFeature = false;
await Dynamsoft.BarcodeReader.loadWasm();
Tips and Tricks
- Check out what features are included in compact and full version.
- This property must be set before
loadWasm
. - We recommend using the compact version in video decoding for its small size and quick initialization.
- This property cannot be set in NodeJS and will always use the fully featured version.