适用于 100 多种语言的纯 Javascript OCR,无需联网即可使用。
https://github.com/naptha/tesseract.js
使用:
import Tesseract from 'tesseract.js';
Tesseract.recognize(
'https://tesseract.projectnaptha.com/img/eng_bw.png',
'eng',
{ logger: m => console.log(m) }
).then(({ data: { text } }) => {
console.log(text);
})