1.2.0 โ€ข Published 3 years ago

@phaticusthiccy/image-to-text v1.2.0

Weekly downloads
-
License
GPL-3.0-or-later
Repository
github
Last release
3 years ago

Image-to-Text

It converts images too rgba based text.

NPM PACKAGE ๐Ÿ“ฆ

npm i @phaticusthiccy/image-to-text

Example ๐Ÿงช

var tti = require('@phaticusthiccy/image-to-text');

var options = {
  fit:    'box',
  width:  200,
  height: 100
}

tti('path/to/image.png', options, function (err, rgba) {
  if (err) throw err;

  console.log(rgba);
});

CLI ๐Ÿ’ป

Getting ready..