tesseractocr

2.0.3 • Public • Published

view on npm downloads per month node version build status test coverage license

Tesseract OCR for Node.js

Simple and modern Node.js wrapper implementation for Tesseract OCR CLI.

Features & Advantages

  • focus on high performance
  • both promise and callback APIs are supported
  • full test coverage
  • void of sync operations
  • no temp files are used

Usage

import recognize from 'tesseractocr'

const text = await recognize('/path/to/image.png')
console.log('Yay! Text recognized:', text)

Note: Despite that it's encouraged to use the more modern promise-based API, the good old callbacks are still supported.

API docs

The overall API documentation can be found here

Installation

There is a hard dependency on the Tesseract project. You can find installation instructions for various platforms on the project site. For Homebrew users, the installation is quick and easy.

brew install tesseract

You can then go about installing the Node.js package to expose the JavaScript API:

npm install tesseractocr

Tests and benchmarks

Clone the repo, npm install and then npm test or npm run benchmarks.

Changelog

The project's changelog is available here

License

MIT

Package Sidebar

Install

npm i tesseractocr

Weekly Downloads

79

Version

2.0.3

License

MIT

Unpacked Size

15.3 kB

Total Files

11

Last publish

Collaborators

  • schwarzkopfb