okrabyte

OCR library pure JavaScript


Keywords
OCR, ocrad.js
License
MIT
Install
npm install okrabyte@0.1.1

Documentation

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)