ng-ocr

1.6.1 • Public • Published

ng-ocr

Build Status Downloads NPM-Version

Ngocr is an OCR library pure JavaScript for node.js. We use ocrad.js.

Install

$ npm install ng-ocr -S

How to use

image

Simple :

var Ngocr = require("Ngocr");
Ngocr.decodeFile("test/fixture/hello_world.png", function(error, data){
  console.log(data); // Hello World!
});

From Buffer:

var Ngocr = require("Ngocr");
var fs = require("fs");
var buffer = fs.readFileSync("test/fixture/hello_world.png");
Ngocr.decodeBuffer(buffer, function(error, data){
  console.log(data); // Hello World!
});

From Stream:

var Ngocr = require("Ngocr");
var fs = require("fs");
var stream = fs.createReadStream("test/fixture/hello_world.png");
Ngocr.decodeStream(stream, function(error, data){
  console.log(data); // Hello World!
});

Todo

  • JPG support
  • gif support
  • stream interface (i love pipe)

Dependencies (5)

Dev Dependencies (1)

Package Sidebar

Install

npm i ng-ocr

Weekly Downloads

4

Version

1.6.1

License

MIT

Last publish

Collaborators

  • zmatsh