UNPKG
img2braille
Version:
latest (1.0.1)
1.0.1
1.0.0
0.1.0
Dynamically converts an image to braille (ASCII) art
github.com/5E7EN/Img2Braille
5E7EN/Img2Braille
img2braille
/
examples
/
dithering.js
8 lines
(5 loc)
•
192 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
{ braillefy } =
require
(
'img2braille'
); (
async
() => {
const
result =
await
braillefy
(
'https://i.nuuls.com/LAOzc.png'
,
30
, {
dither
:
true
});
console
.
log
(result); })();