img-term-string
v1.0.7
Published
Get image string that can be displayed in the terminal from url or file source
Downloads
8
Maintainers
Readme
img-term-string
From image url or file to a string that can be used to render the image in the terminal.
Currently supported on iTerm2 >= 3.
Install
$ npm install --save img-term-string
Usage
const imgTermString = require('img-term-string');
imgTermString({ src: "https://someimage.png or path/to/local/image" })
.then(imgString => { console.log(imgString) });
// returns the image string and logs it to the terminal
API
imgTermString(options)
Returns a the formatted image string via promise or callback.
src
Type: string
The url or file path of the image.
width
height
Type: string
number
Default: auto
Options: Npx
N%
N
auto
Optional arguments. Set the width and height of the image.
- in pixels(
Npx
) - as a % of the terminal view(
N%
) - number of char cells(
N
) - autoscale based on the image dimensions(
auto
)
License
MIT