1.0.1 • Published 6 years ago

tesseract_bindings v1.0.1

Weekly downloads
2
License
ISC
Repository
-
Last release
6 years ago

tesseract_bindings

Tesseract OCR bindings to NodeJS

Dependencies

sudo apt-get install -y tesseract-ocr tesseract-ocr-eng

Installation

npm install --save tesseract_bindings

Usage

const {
	Tesseract,
	Image
} = require('tesseract_bindings');

const text = new Tesseract("eng").setImage(
	new Image(__dirname + "/image.png")
).getUTF8Text();