Tesseract.js
Tesseract.js 介绍
Tesseract.js is a JavaScript library that gets words in almost any language out of images。esseract.js works with script tags,webpack/browserify,and Node.js. After you install it,using it is as simple as
Tesseract.recognize(myImage)
.progress(function (p) { console.log('progress',p) })
.then(function (result) { console.log('result',result) })
网站地址:http://tesseract.projectnaptha.com/
GitHub:https://github.com/naptha/tesseract.js