VUE识别图片文字OCR(tesseract.js)
<template>
<div>
<input type="file" @change="readFile" />
<div v-if="ocrText">
<h2>识别结果:</h2>
<p>{{ ocrText }}</p>
</div>
</div>
</template>
<script>
import Tesseract from 'tesseract.js';
export default {
data() {
return {
ocrText: ''
};
},
methods: {
readFile(event) {
const file = event.target.files[0];
if (file) {
this.recognizeText(file);
}
},
recognizeText(image) {
Tesseract.recognize(
image,
'eng', // 使用英文识别,你可以更换为其他语言代码
{
logger: m => this.ocrText = m.status
}
).then(({ data: { text } }) => {
this.ocrText = text;
}).catch(error => {
console.error(error);
this.ocrText = 'OCR FAILED';
});
}
}
};
</script>
这段代码使用了Vue.js和tesseract.js来实现图片中的文字识别功能。用户可以通过点击<input>
元素选择一个图片文件,之后图片会被tesseract.js的Tesseract.recognize
方法处理,并且识别结果会被展示在页面上。这个例子简单明了,并且注重于实现核心功能,而不是过多的UI细节。
评论已关闭