1.1.2 • Published 5 years ago

tesseract.ts v1.1.2

Weekly downloads
384
License
MIT
Repository
github
Last release
5 years ago

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);