Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.02 KB

README.md

File metadata and controls

28 lines (22 loc) · 1.02 KB

tesseract.ts

NPM version Dependency Status devDependency Status

Typescript wrapper for the tesseract.js

Stupid like potato but truly working wrapper. If you a bit sick of "Unexpected token <" issue and do not want to import file in the index.html using rawgit CDN, this package is the way to go (or you can just copy its content to your project)

Installation

npm i -S tesseract.ts tesseract.js

Usage

import {Tesseract} from "tesseract.ts";

// then according to the original docs/examples
Tesseract
    .recognize(myImage)
    .progress(console.log)
    .then((res: any) => {
        console.log(res);
    })
    .catch(console.error);