Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/phaticusthiccy/image-to-text

It converts images to rgba based text.
https://github.com/phaticusthiccy/image-to-text

image-processing javascript text

Last synced: 2 months ago
JSON representation

It converts images to rgba based text.

Awesome Lists containing this project

README

        

# Image-to-Text
It converts images too rgba based text.

### NPM PACKAGE ๐Ÿ“ฆ
`npm i @phaticusthiccy/image-to-text`

### Example ๐Ÿงช
```js
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..
```