Dynamsoft BarcodeReader SDK for Web is a JavaScript library for barcode scanning based on the WebAssembly technology. It supports real-time localization and decoding of various barcode types. The library is capable of scanning barcodes from static images as well as directly from live video streams. It also supports reading multiple barcodes at once.
yarn
$ yarn add dynamsoft-javascript-barcode
npm
$ npm install dynamsoft-javascript-barcode --save
cdn
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@7.4.0-v1/dist/dbr.js" data-productKeys="PRODUCT-KEYS"></script>
<!-- or -->
<script src="https://unpkg.com/dynamsoft-javascript-barcode@7.4.0-v1/dist/dbr.js" data-productKeys="PRODUCT-KEYS"></script>
<!DOCTYPE html>
<html>
<body>
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@7.4.0-v1/dist/dbr.js" data-productKeys="PRODUCT-KEYS"></script>
<script>
let scanner = null;
(async()=>{
scanner = await Dynamsoft.BarcodeScanner.createInstance();
scanner.onFrameRead = results => {console.log(results);};
scanner.onUnduplicatedRead = (txt, result) => {alert(txt);};
await scanner.show();
})();
</script>
</body>
</html>
- Install
- Quick Usage
- Features
- Live Demo
- Getting Started: HelloWorld
- Taking a closer look
- Advanced Usage
- Self-hosted | Offline | Intranet Deployment
- Changelog
- How to Upgrade
- API Documentation
- License Activation
- License Agreement
- Contact Us
1D barcode: Code 39
, Code 128
, Code 93
, Codabar
, Interleaved 2 of 5 (ITF)
, EAN-13
, EAN-8
, UPC-A
, UPC-E
, Industrial 2 of 5
(Code 2 of 5 Industry, Standard 2 of 5, Code 2 of 5), Code 39 Extended
.
2D barcode: PDF417
, QR
, DataMatrix
, Aztec
, MaxiCode
, Dot Code
.
GS1 Databar: Omnidirectional
, Truncated
, Stacked
, Stacked Omnidirectional
, Expanded
, Expanded Stacked
, Limited
.
Patch Code
GS1 Composite Code
Postal Code: USPS Intelligent Mail
, PostNet
, Planet
, Australian Post
, UK Royal Mail (RM4SCC)
.
- Supported Data Sources:
Blob
,HTMLImageElement
,HTMLVideoElement
, andURL
, etc.
-
Unlike typical server-based applications, this library requires some advanced features which fortunately are supported by all mainstream modern browsers. These advanced features are listed below:
- MediaDevices/getUserMedia
- Required only for in-browser video streaming. If a browser doesn't have this API the Single Frame Mode is used automatically. If the API exists but doesn't work correctly, Single Frame Mode can be used as an alternative.
- WebAssembly, Blob, URL/createObjectURL, Web Workers
- These four features are required for the library to work.
- MediaDevices/getUserMedia
-
Combining the requirements above results in the following table of supported browsers.
NOTE: Apart from the browsers, the operating systems running on the target devices may also impose some limitations of their own that could restrict the use of the library. Therefore, the following table serves as a rough estimation instead of an accurate guideline. Browser compatibility ultimately depends on whether the browser on that particular operating system supports the features listed above.
Browser Name | Version |
---|---|
Chrome | v57+ (v59+ on Android/iOS1) |
Firefox | v52+ (v55+ on Android/iOS1) |
Edge2 | v16+ |
Safari3 | v11+ |
1 Video streaming is not supported in Chrome/Firefox on iOS.
2 On Edge, due to strict Same-origin policy, you must host the library in the same domain as your web page.
3 Safari 11.2.2 ~ 11.2.6 are not supported.
As more features are being added to the library, the supporting wasm
file is getting larger. For flexibility, we provide two editions. The compact edition has fewer features but downloads and compiles faster; on the other hand, the full edition has all features built-in.
Features | Compact edition | Full edition |
---|---|---|
wasm size1(gzip) |
810KB | 1.1 MB |
1D | ✓ | ✓ |
QR | ✓ | ✓ |
Mirco QR | - | ✓ |
PDF417 | ✓ | ✓ |
Mirco PDF417 | - | ✓ |
DataMatrix | ✓ | ✓ |
Aztec | - | ✓ |
MaxiCode | - | ✓ |
Patch Code | - | ✓ |
GS1 Composite Code | - | ✓ |
GS1 DataBar | - | ✓ |
Dot Code | - | ✓ |
Postal Code | - | ✓ |
DPM | - | ✓ |
getRuntimeSettings | ✓ | ✓ |
updateRuntimeSettings | ✓ | ✓ |
getIntermediateResults | - | ✓ |
initRuntimeSettingsWithString | - | ✓ |
outputSettingsToString | - | ✓ |
recommended scenario2 | Customer Facing Application | Enterprise Solution |
1 The wasm
file size is based on version 7.2.2. In later versions, the size may differ.
2 The compact edition downloads and compiles faster, which makes it more suitable for the scenario where a customer only needs to scan a barcode once. In comparison, scenarios where an employee needs to scan lots of barcodes continuously or where uncommon barcodes or advanced features are required, use the full edition by simply setting the following before you call loadWasm
or CreateInstance
.
Dynamsoft.BarcodeReader._bUseFullFeature = true;
The following is a screenshot of the live demo. Try it here.
This section will help you use the library to build a simple web application to decode barcodes from a video stream.
Basic Requirements
- Internet connection
- Supported Browser
- Camera access
Create an HTML file with the following content. Deploy this to your web server and run the application over HTTPS.
- You will need to replace
PRODUCT-KEYS
with a trial key for the sample code to work correctly. You can acquire a trial key here. - If you don't have a ready-to-use web server and you happen to have a package manager like
npm
oryarn
, you can set up a simple http server in minutes. Check out http-server on npm or yarn.
<!DOCTYPE html>
<html>
<body>
<!-- Please visit https://www.dynamsoft.com/CustomerPortal/Portal/TrialLicense.aspx to get a trial license. -->
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@7.4.0-v1/dist/dbr.js" data-productKeys="PRODUCT-KEYS"></script>
<script>
let scanner = null;
(async()=>{
scanner = await Dynamsoft.BarcodeScanner.createInstance();
scanner.onFrameRead = results => {console.log(results);};
scanner.onUnduplicatedRead = (txt, result) => {alert(txt);};
await scanner.show();
})();
</script>
</body>
</html>
Open the file in your browser and there will be a pop-up asking for permission to access the camera. Once the access is granted, you will see the video stream in the default UI of the BarcodeScanner.
Note: If you don't see the pop-up, wait a few seconds for the initialization to finish.
If you open the HTML file as file:///
or http://
, the following error may appear in the browser console:
[Deprecation] getUserMedia() no longer works on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gl/rStTGz for more details.
In Safari 12 the error is
Trying to call getUserMedia from an insecure document.
As the error states, to access the camera with the API getUserMedia, a secure channel (https://
) is required.
Note: If you use Chrome or Firefox, you might not get the error because these two browsers allow camera access via
file:///
andhttp://localhost
.
To make sure your web application can access the camera, try to configure your web server to support HTTPS. The following links may help.
- NGINX: Configuring HTTPS servers
- IIS: Create a Self Signed Certificate in IIS
- Tomcat: Setting Up SSL on Tomcat in 5 minutes
- Node.js: npm tls
For testing purposes, a self-signed certificate can be used when configuring HTTPS. When accessing the site, the browser might say "the site is not secure
". In this case, go to the certificate settings and trust this certificate.
In a production environment, you will need a valid HTTPS certificate that does not have this issue. If you don't have one yet, you can get a free one from Let’s Encrypt. We recommend obtaining a paid certificate from companies such as Verisign, GeoTrust, etc.
Put something with a barcode in front of the camera and you'll see it located and decoded right in the UI.
Now, take a look at the sample code. You can find that there is nothing but two scripts inside the <body>
-
The following script includes the core library in the application via a jsDelivr CDN
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@7.4.0-v1/dist/dbr.js" data-productKeys="PRODUCT-KEYS"></script>
The same can be done with other CDNs like
unpkg
<script src="https://unpkg.com/dynamsoft-javascript-barcode@7.4.0-v1/dist/dbr.js" data-productKeys="PRODUCT-KEYS"></script>
NOTE: : Since we do change the library a bit in each release, to make sure your application doesn't get interrupted by automatic updates, use a specific version in your production environment, as shown above. Using a general major version like
@7
is not recommended. -
The following script initializes and uses the library
<script> let scanner = null; (async()=>{ scanner = await Dynamsoft.BarcodeScanner.createInstance(); scanner.onFrameRead = results => {console.log(results);}; scanner.onUnduplicatedRead = (txt, result) => {alert(txt);}; await scanner.show(); })(); </script>
For now, pay attention to the following two events.
onFrameRead
This event is triggered after each single frame is scanned. Theresults
object contains all the barcode results that the library found on this frame.onUnduplicatedRead
This event is triggered when a new barcode (not a duplicate) is found.txt
holds the barcode text value whileresult
is an object that holds details of the found barcode.
In the following sections, you'll find more detailed information on how the library works and how you can customize it to your needs.
The library is based on the WebAssembly
standard; therefore, on first use, it needs some time to download and compile the wasm
files. After the first use, the browser may cache the file so that the next time no 'downloading' is required.
Dynamsoft.BarcodeReader.loadWasm
is the API to start the initialization.
try{
await Dynamsoft.BarcodeReader.loadWasm();
}catch(ex){
console.error(ex);
}
That said, as shown in the sample above, you don't necessarily need to call the above API because other APIs like Dynamsoft.BarcodeReader.createInstance
and Dynamsoft.BarcodeScanner.createInstance
will call loadWasm
themselves.
let reader = null;
let scanner = null;
try{
reader = await Dynamsoft.BarcodeReader.createInstance();
scanner = await Dynamsoft.BarcodeScanner.createInstance();
}catch(ex){
console.error(ex);
}
NOTE: Including the library with a script tag doesn't automatically initialize the library. For better performance, you may want to call
loadWasm
to download and compile thewasm
file in advance and create a reader or scanner instance later.
The detailed initialization includes the following steps:
Download the necessary resources. Usually, we deploy the resources on CDN and set a long cache duration. If your web server is faster, you should put the resources on your own server instead of the CDN.
The wasm
files are automatically compiled once downloaded. The compilation time varies among different devices & browsers. While it takes less than a second on latest phones or PCs, it may take seconds or longer on some older devices.
The library needs to initialize every time the page loads. The initialization means creating an BarcodeReader
or BarcodeScanner
instance with specified settings.
When creating an instance of the BarcodeScanner
object, there are several configuration options. The following code shows some of the most useful ones:
// set which camera and what resolution to use
await scanner.updateVideoSettings({ video: { width: 1280, height: 720, facingMode: "environment" } });
// use one of three built-in RuntimeSetting templates, 'speed' is recommended for decoding from a video stream
await scanner.updateRuntimeSettings("speed");
// make changes to the template. The code snippet below demonstrates how to specify which symbologies are enabled
let runtimeSettings = await scanner.getRuntimeSettings();
runtimeSettings.barcodeFormatIds = Dynamsoft.EnumBarcodeFormat.BF_ONED | Dynamsoft.EnumBarcodeFormat.BF_QR_CODE;
await scanner.updateRuntimeSettings(runtimeSettings);
// set up the scanner behavior
let scanSettings = await scanner.getScanSettings();
// disregard duplicated results found in a specified time period
scanSettings.duplicateForgetTime = 20000;
// set a scan interval so the library may release the CPU from time to time
scanSettings.intervalTime = 300;
await scanner.updateScanSettings(scanSettings);
As you can see in the code, there are three categories of configurations.
-
get/updateVideoSettings
: Configures the data source, i.e., the video stream. These settings include which camera to use, the resolution, etc.. Learn more here. -
get/updateRuntimeSettings
: Configures the decode engine. Find a full list of these settings and their corresponding descriptions here. Try in JSFiddlee.g.
await barcodeScanner.updateRuntimeSettings("speed");
await barcodeScanner.updateRuntimeSettings("balance");
await barcodeScanner.updateRuntimeSettings("coverage");
let settings = await barcodeScanner.getRuntimeSettings(); settings.localizationModes = [ Dynamsoft.EnumLocalizationMode.LM_CONNECTED_BLOCKS, Dynamsoft.EnumLocalizationMode.LM_SCAN_DIRECTLY, Dynamsoft.EnumLocalizationMode.LM_LINES, 0, 0, 0, 0, 0]; settings.deblurLevel = 2; await barcodeScanner.updateRuntimeSettings(settings);
-
get/updateScanSettings
: Configures the behavior of the scanner which includesduplicateForgetTime
,intervalTime
andfilter
, etc.
While the library provides a built-in BarcodeScanner
which has its own UI, feel free to customize it.
The default scanner UI is defined in the file dist/dbr.scanner.html
. There are 3 ways to customize it:
- Modify the file
dist/dbr.scanner.html
directly (only possible when you deploy these files yourself instead of using the CDN). - Copy the file
dist/dbr.scanner.html
, modify it and specify the new file as the default UI by its URLDynamsoft.BarcodeScanner.defaultUIElementURL = url
. Note that you must setdefaultUIElementURL
before you callcreateInstance
. - Build the UI into your own web page and call
scanner.setUIElement(HTMLElement)
to specify that element.
The following introduces the 3rd way. Check out the following code on how it's done.
<!DOCTYPE html>
<html>
<body>
<div id="div-video-container">
<video class="dbrScanner-video" playsinline="true"></video>
</div>
<!-- Please visit https://www.dynamsoft.com/CustomerPortal/Portal/TrialLicense.aspx to get a trial license. -->
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@7.4.0-v1/dist/dbr.js" data-productKeys="PRODUCT-KEYS"></script>
<script>
let scanner = null;
(async()=>{
scanner = await Dynamsoft.BarcodeScanner.createInstance();
await scanner.setUIElement(document.getElementById('div-video-container'));
scanner.onFrameRead = results => {console.log(results);};
scanner.onUnduplicatedRead = (txt, result) => {alert(txt);};
await scanner.show();
})();
</script>
</body>
</html>
The code has set the element div-video-container
as the UI and inside it there is a video element for showing the video stream.
NOTE: The class name of the video element must be set to
dbrScanner-video
.<video class="dbrScanner-video" playsinline="true"></video>
Next, you can add the camera list and resolution list.
If the class names match the default ones which are
dbrScanner-sel-camera
anddbrScanner-sel-resolution
, the library will automatically populate the lists and handle the camera/resolution switching automatically.
<select class="dbrScanner-sel-camera"></select>
<select class="dbrScanner-sel-resolution"></select>
8 default resolutions will automatically show up.
Too many resolutions may be overwhelming for end users. Check out the following code on how to offer your own resolution options.
<select class="dbrScanner-sel-resolution">
<option class="dbrScanner-opt-gotResolution" value="got"></option>
<option data-width="1920" data-height="1080">1920 x 1080</option>
<option data-width="1280" data-height="720">1280 x 720</option>
<option data-width="640" data-height="480">640 x 480</option>
</select>
Possible Issue: : Generally you need to provide a resolution that the camera supports. However, in case a camera does not support a specified resolution, it usually will just use the nearest supported resolution. As a result, the selected resolution may not be the actual resolution.
Solution: To take care of this issue, you can add an option with the class name
dbrScanner-opt-gotResolution
(as shown above) which the library will then use to show the actual resolution being used.
Include the following in your code to print internal logs in the console.
Dynamsoft.BarcodeReader._onLog = console.log;
Try the following code to show found barcodes in input
elements on the page
<input id="ipt-0">
<input id="ipt-1">
<input id="ipt-2">
let iptIndex = 0;
let scanner = null;
(async()=>{
scanner = await Dynamsoft.BarcodeScanner.createInstance();
await scanner.setUIElement(document.getElementById('div-video-container'));
scanner.onFrameRead = results => {console.log(results);};
scanner.onUnduplicatedRead = (txt)=>{
document.getElementById('ipt-' + iptIndex).value = txt;
if(3 == ++iptIndex){
scanner.onUnduplicatedRead = undefined;
// Hide the scanner if you only need to read these three barcodes
scanner.hide();
}
};
await scanner.show();
})();
To speed up the scanning process, you can choose to scan only a specific area/region.
let settings = await scanner.getRuntimeSettings();
/*
* 1 means true
* Using a percentage is easier
* The following code shrinks the decoding region by 25% on all sides
*/
settings.region.regionMeasuredByPercentage = 1;
settings.region.regionLeft = 25;
settings.region.regionTop = 25;
settings.region.regionRight = 75;
settings.region.regionBottom = 75;
await scanner.updateRuntimeSettings(settings);
For commercial usage, we highly recommend self-hosted deployment. The following steps guide you through how to deploy the library on your own server.
- Step one: Place the files
Locate the following files and place them in the same directory on your server. You can get them in dist/
.
dbr.js // For <script>
dbr.browser.mjs // For <script type="module">
dbr.scanner.html // Scanner default UI
dbr-<version>.worker.js // A worker thread for decoding
dbr-<version>.wasm.js // Compact Editions
dbr-<version>.wasm // Compact Editions
dbr-<version>.full.wasm.js // Full Editions
dbr-<version>.full.wasm // Full Editions
-
Step two: Configure the server
Make sure that your webserver serves the
*.wasm
file withContent-Type: application/wasm
. Otherwise, the browser won't be able to recognize it.All you need to do is set the MIME type for
.wasm
toapplication/wasm
.Different servers are configured differently, below lists a few popular ones
- NGINX: mime.types
- IIS: Web.config
- Java™ EE web app: web.xml
- Node.js: npm mime
-
Step three: [Optional] Configure the
engineResourcePath
If the resource files like the wasm
files are not placed in the same directory as the file dbr.js
. Then you will need to specify the path with the API engineResourcePath
. Note that it must be set before loadWasm
or createInstance
is called.
Dynamsoft.BarcodeReader.engineResourcePath = "url/to/the/dir/";
https://www.dynamsoft.com/Products/Dynamic-Barcode-Reader-News.aspx#javascript
- If you are using a CDN, be sure to change the version number in the URL like this
<script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@7.4.0-v1/dist/dbr.js" data-productKeys="PRODUCT-KEYS"></script>
- If you have deployed the library files on your own server, you'll need to replace the old files with the new version. Download the latest version here.
Dynamsoft made several changes in the version 7.2.2-v2
; therefore it may take a bit more effort to upgrade the library from an older version to the version 7.2.2-v2
or a later version including the latest 7.3.0-v0
(as of January 2020). Apart from changing the code to include the correct version of the library, you'll also need to make changes to your code related to the APIs of the library. Check out this post for more information. If you need further assistance with the upgrade, please feel free to contact Dynamsoft Support.
It takes several steps to activate a purchased license, the following steps assume you have already acquired a commercial license from Dynamsoft. If you haven't done so yet, you can purchase a license here.
-
Step One : Create a Dynamsoft account
If you don't have an Dynamsoft account, sign up here. Be sure to use the same email that was registered for the purchase.
-
Step Two : Log into Dynamsoft Customer Portal
Once logged in, click Barcode Reader SDK on the menu bar on the left under License Center and you should be able to see your purchased key on the right pane.
-
Step Three : Activate the License
Under Status, click the link Activate Now to specify a domain which your license key will be bound to. The domain binding is a security feature to protect your license, although it's optional, it's highly recommended.
A few examples of the domain
demo.dynamsoft.com
*.dynamsoft.com
*.dynamsoft.com;*.yoursite.com
-
Step Four : Use the License
You may have noticed that in all the samples above, we have the following line of code
<!-- Please visit https://www.dynamsoft.com/CustomerPortal/Portal/TrialLicense.aspx to get a trial license. --> <script src="https://cdn.jsdelivr.net/npm/dynamsoft-javascript-barcode@7.4.0-v1/dist/dbr.js" data-productKeys="PRODUCT-KEYS"></script>
To use your activated key, you simply need to replace
PRODUCT-KEYS
with it.
https://www.dynamsoft.com/Products/barcode-reader-license-agreement.aspx#javascript
If there are any questions, please feel free to contact support@dynamsoft.com.