项目作者: piotrmurach

项目描述 :
Terminal fonts
高级语言: Ruby
项目地址: git://github.com/piotrmurach/tty-font.git
创建时间: 2017-12-17T17:21:47Z
项目社区:https://github.com/piotrmurach/tty-font

开源协议:MIT License

下载



TTY Toolkit logo

TTY::Font Gitter

Gem Version
Actions CI
Build status
Maintainability
Coverage Status
Inline docs

Write text in large stylized characters using a variety of terminal friendly fonts.

screenshot

TTY::Font provides independent terminal font rendering component for TTY toolkit.

Installation

Add this line to your application’s Gemfile:

  1. gem 'tty-font'

And then execute:

  1. $ bundle

Or install it yourself as:

  1. $ gem install tty-font

Usage

Initialize font out of available fonts:

  1. font = TTY::Font.new(:doom)

and then print text out to console:

  1. puts font.write("DOOM")
  2. # =>
  3. # ______ _____ _____ ___ ___
  4. # | _ \| _ || _ || \/ |
  5. # | | | || | | || | | || . . |
  6. # | | | || | | || | | || |\/| |
  7. # | |/ / \ \_/ /\ \_/ /| | | |
  8. # |___/ \___/ \___/ \_| |_/
  9. #

To adjust the spacing between all the letters in a piece of text use :letter_spacing option:

  1. puts font.write("DOOM", letter_spacing: 4)
  2. # =>
  3. # ______ _____ _____ ___ ___
  4. # | _ \ | _ | | _ | | \/ |
  5. # | | | | | | | | | | | | | . . |
  6. # | | | | | | | | | | | | | |\/| |
  7. # | |/ / \ \_/ / \ \_/ / | | | |
  8. # |___/ \___/ \___/ \_| |_/

If you wish to print text in color use pastel:

  1. pastel = Pastel.new
  2. puts pastel.yellow(font.write("DOOM"))

Fonts

The list of the available fonts: (select link to see font face)

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/piotrmurach/tty-font. 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 TTY::Font project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

Copyright (c) 2017 Piotr Murach. See LICENSE for further details.