5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Artii で利用可能なフォント一覧のサンプルを出す

Last updated at Posted at 2013-04-13

Artii は、アスキーアートでアルファベットを出力するためのgem。

gem install artii
artii Sample --font slant
   _____                       __   
  / ___/____ _____ ___  ____  / /__ 
  \__ \/ __ `/ __ `__ \/ __ \/ / _ \
 ___/ / /_/ / / / / / / /_/ / /  __/
/____/\__,_/_/ /_/ /_/ .___/_/\___/ 
                    /_/             

地味にたくさんのフォントが利用可能なのだが、いざ使おうと思うとどれを使ったものか……となりがち。そんな時、以下のワンライナーでサンプルを一覧できる。

ruby -rartii -e 'Artii::Base.new.all_fonts.each {|n, _| puts "%s\n\n%s\n\n" % [n, Artii::Base.new(font: n).output("Sample") ] }' | less

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?