Skip to content

k0kag3/ascii2d

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ascii2d

npm-version npm-downloads docs

ascii2d wrapper for Node.js.

Usage

yarn add ascii2d
import {searchByUrl, searchByFile} from 'ascii2d';

searchByUrl('https://example.com/yourimage.jpg', 'color').then((result) =>
  console.log(result),
);

searchByFile('./input.jpg', 'bovw').then((result) => console.log(result));