-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdce.html
40 lines (39 loc) · 1.3 KB
/
dce.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dynamsoft Capture Vision for the Web Step by Step</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/dcv.bundle.js"></script>
</head>
<body>
<div
id="div-ui-container"
style="width: 70vw; height: 40vh; margin-top: 3vh"
></div>
<div
id="results"
style="width: 100%; min-height: 10vh; font-size: 3vh; overflow: auto"
></div>
<script>
// Dynamsoft.License.LicenseManager.initLicense(
// "DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9"
// );
(async function () {
/**
* Prepare the image source
*/
const cameraViewContainer = document.querySelector("#div-ui-container");
const view = await Dynamsoft.DCE.CameraView.createInstance();
cameraEnhancer = await Dynamsoft.DCE.CameraEnhancer.createInstance(
view
);
Dynamsoft.DCE.CameraEnhancer.onWarning = (warning) =>
console.log(warning);
cameraViewContainer.append(view.getUIElement());
cameraEnhancer.open();
})();
</script>
</body>
</html>