uokrabyte

1.0.1 • Public • Published

okrabyte

Build Status

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

Install

$ npm install okrabyte -S

How to use

image

Simple :

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

From Buffer:

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

From Stream:

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

Todo

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

Readme

Keywords

Package Sidebar

Install

npm i uokrabyte

Weekly Downloads

2

Version

1.0.1

License

MIT

Last publish

Collaborators

  • miguelunisys