Popularity
1.3
Growing
Activity
7.6
-
31
4
4

Description

TerminalImage is a library to show images on terminals. Currently, this library supports iTerm2 and terminals with libsixel installed.

Monthly Downloads: 57
Programming language: Ruby
License: MIT License
Tags: CLI Utilities     Image     Terminal    
Latest version: v0.3.0

TerminalImage alternatives and similar gems

Based on the "CLI Utilities" category.
Alternatively, view TerminalImage alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of TerminalImage or a related project?

Add another 'CLI Utilities' Gem

README

TerminalImage

Gem Version Circle CI Code Climate codecov Libraries.io dependency status for GitHub repo GitHub

TerminalImage is a library to show images on terminals. Currently, this library supports iTerm2 and terminals with libsixel installed.

[](./images/example.png)

Installation

Add this line to your application's Gemfile:

gem 'terminal_image'

Terminals other than iTerm2:

Please install libsixel's img2sixel command following https://github.com/saitoha/libsixel#install

Usage

# Print image by File object
TerminalImage.show(File.open('your-image-path.png'))

# Print image from URL
TerminalImage.show_url('https://raw.githubusercontent.com/unhappychoice/terminal_image/master/images/sample.png')

# Get encoded string ready to be displayed 
string = TerminalImage.encode(File.open('your-image-path.png'))

# Get encoded string ready to be displayed from URL
string = TerminalImage.encode_url('https://raw.githubusercontent.com/unhappychoice/terminal_image/master/images/sample.png')

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/unhappychoice/terminal_image. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the TerminalImage project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.


*Note that all licence references and agreements mentioned in the TerminalImage README section above are relevant to that project's source code only.