-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
43 lines (42 loc) · 1.12 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const { imageToAnsii, gifToAnsii } = require('./lib/image-to-ansii');
/**
* Console Art
*
* Converts popular image formats into a terminal-compatible
* low-resolution replica, the output of which can be printed
* directly to the terminal.
*
* @example
*
* // straight to print
* const terminalArt = require('terminal-art');
* await terminalArt.print(
* 'my-image.png',
* {
* output: 'log', // console.log
* maxCharWidth: 20 // my terminal is only 20 characters wide
* }
* );
*
* // for use later (store as a file which can be cat'd or similar)
* const ansii = await terminalArt.toAnsii(
* myImageBuffer,
* {
* maxCharWidth: 100,
* mimeType: 'image/png'
* }
* );
*/
module.exports = {
async print(path, options = {}) {
console[options.output || 'log'](
"\n" + await imageToAnsii(path, options) // eslint-disable-line quotes
);
},
toAnsii(path, options = {}) {
return imageToAnsii(path, options);
},
toAnsiiFrames(path, options = {}) {
return gifToAnsii(path, options);
}
};