You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
986 B
31 lines
986 B
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<script src="/dist/tesseract.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<input type="file" id="uploader" multiple>
|
|
<script type="module">
|
|
|
|
// This is a basic example more efficient than "basic.html".
|
|
// In this example we create a worker once, and this worker is re-used
|
|
// every time the user uploads a new file.
|
|
const worker = await Tesseract.createWorker("eng", 1, {
|
|
corePath: '../../node_modules/tesseract.js-core',
|
|
workerPath: "/dist/worker.min.js",
|
|
logger: function(m){console.log(m);}
|
|
});
|
|
|
|
const recognize = async function(evt){
|
|
const files = evt.target.files;
|
|
|
|
for (let i=0; i<files.length; i++) {
|
|
const ret = await worker.recognize(files[i]);
|
|
console.log(ret.data.text);
|
|
}
|
|
}
|
|
const elm = document.getElementById('uploader');
|
|
elm.addEventListener('change', recognize);
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|