Pure Javascript OCR for more than 100 Languages 📖🎉🖥
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.
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<script src="/dist/tesseract.dev.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<input type="file" id="uploader">
|
|
|
|
<script>
|
|
|
|
const recognize = async ({ target: { files } }) => {
|
|
|
|
const { data: { text } } = await Tesseract.recognize(files[0], 'eng', {
|
|
|
|
corePath: '../../node_modules/tesseract.js-core/tesseract-core.wasm.js',
|
|
|
|
logger: m => console.log(m),
|
|
|
|
});
|
|
|
|
console.log(text);
|
|
|
|
}
|
|
|
|
const elm = document.getElementById('uploader');
|
|
|
|
elm.addEventListener('change', recognize);
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|