JSPM

img-term-string

1.0.7
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q29459F
  • License MIT

Get image string that can be displayed in the terminal from url or file source

Package Exports

  • img-term-string

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (img-term-string) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

img-term-string Build Status

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