Skip to content

Instantly share code, notes, and snippets.

@yushulx
Created July 27, 2020 00:53
Show Gist options
  • Save yushulx/242c81f6576352b138f954fdfc52b2ba to your computer and use it in GitHub Desktop.
Save yushulx/242c81f6576352b138f954fdfc52b2ba to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment