patorjk / figlet.js

A FIG Driver written in JavaScript which aims to fully implement the FIGfont spec.
MIT License
2.64k stars 170 forks source link

Preview #42

Closed kud closed 4 years ago

kud commented 5 years ago

Hello,

It could be great to have a preview of all fonts.

For the moment I do this command:

figlet -l|xargs -I FONT sh -c 'echo "FONT:" && figlet -f "FONT" "Imhotep" && echo "-------------------------"'

which works great but it could be built-in.

kud commented 5 years ago

With custom text:

figlet -l|xargs -I FONT sh -c 'echo "FONT:" && figlet -f "FONT" "'$1'" && echo "-------------------------"'
jcubic commented 4 years ago

This repo is JS library not CLI, and using demo app you can see all fonts with custom text by clicking this link http://patorjk.com/software/taag/#p=testall&f=Graffiti&t=Type%20Something%20

Sorry this is really old but it didn't had the reply.

kud commented 4 years ago

Thanks :)