Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/phaticusthiccy/image-to-text
- Owner: phaticusthiccy
- License: gpl-3.0
- Created: 2021-05-02T20:13:48.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-02T22:24:53.000Z (over 3 years ago)
- Last Synced: 2024-11-21T21:45:12.069Z (2 months ago)
- Topics: image-processing, javascript, text
- Language: JavaScript
- Homepage:
- Size: 73.2 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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..
```