Questions tagged [figlet]

FIGlet is a computer program that generates text banners, in a variety of typefaces, composed of letters made up of conglomerations of smaller ASCII characters (see ASCII art).

FIGlet is a computer program that generates text banners, in a variety of typefaces, composed of letters made up of conglomerations of smaller ASCII characters (see ASCII art). The name derives from "Frank, Ian and Glen's letters".

Being free software, FIGlet is commonly included as part of many Unix-like operating systems (Linux, BSD, etc.) distributions, but it has been ported to other platforms as well. The official FIGlet FTP site includes precompiled ports for the Acorn, Amiga, Apple II, Atari ST, BeOS, Macintosh, MS-DOS, NextStep, OS/2, and Windows platforms, as well as a reimplementation in Perl (Text::FIGlet). There are third-party reimplementations of FIGlet in Java (including one embedded in the JavE ASCII art editor), JavaScript and PHP. FIGlet was featured as a Debian Package of the Day in 2007.

Wikipedia: http://en.wikipedia.org/wiki/FIGlet

19 questions
4
votes
2 answers

How To Get all the usable fonts in pyfiglet python3

I am using a library called pyfiglet which i installed using pip3 install pyfiglet i want to know if there is a way through which i can get a list of all the fonts which i can use in pyfiglet.figlet_format() like i want to get a list list_of_fonts =…
Aditya
  • 1,132
  • 1
  • 9
  • 28
3
votes
5 answers

I would like to concatenate two figlet outputs (with different colors)

Currently I have this kind of output format: { echo "$(figlet buddhi)"; echo "$(figlet lw)"; } _ _ _ _ _ | |__ _ _ __| | __| | |__ (_) | '_ \| | | |/ _` |/ _` | '_ \| | | |_) | |_| | (_| | (_| | | | | | |_.__/…
BuddhiLW
  • 608
  • 3
  • 9
3
votes
1 answer

How to dynamically print figlet text in javascript browser

I am generating a figlet text in java script using this code snippet but I want it to make animated like printing the characters line by line and at the end, final figlet. Code to generate figlet function writeFiglet(){ figlet("Ausi", 'Dancing…
3
votes
8 answers

PyInstaller ImportError: No module named 'pyfiglet.fonts'

I'm attempting to use PyInstaller to compile one of the demo scripts for Asciimatics, in hopes to eventually be able to create a simple GUI for a text-based game I'm developing, and it returns the following error: C:\Users\X\Documents\Python…
James Burns
  • 31
  • 1
  • 1
  • 5
2
votes
1 answer

How do I display a terminal banner after clearing the terminal

so I set up my terminal banner with figlet and I really like it. But it will only be displayed after opening a new terminal. My question is: Can I somehow display a banner after I hit "clear"?
NOCxyB0i
  • 23
  • 4
1
vote
1 answer

figlet.setFont() and random.choice() conflicting with each other

I'm trying to make figlet text in my terminal in python, as per one of the practice problems in week 6 of CS50. I'm trying to have a font picked randomly from pyfiglet's list of fonts, and I'm trying to implement this as follows: import random from…
Mailbox
  • 115
  • 1
  • 5
1
vote
1 answer

vim macro to convert current line to figlet

I wrote a macro to test calling it on a line to convert it to figlet (text ascii-art version) I tryied working around something like let @q='"add:r! figlet a^M' or let @q='"add:r! figlet ^Ra^M' and so on from the :help macro recommandations I…
francois P
  • 306
  • 6
  • 20
1
vote
1 answer

Cannot get figlet to output text to commandline

When using figlet I am really struggling to output the text to the command line using the default example on https://www.npmjs.com/package/figlet. I have a class and it has a method that once run should output some text to the command line. My code…
David Boydell
  • 1,053
  • 1
  • 8
  • 18
1
vote
1 answer

How figlet fit and smush?

I am creating a figlet like code in c++ and i am currently doing fiting by inserting null at left side character and find min space and remove minspace and null the character,( for understanding take null as '0' ) " __0 " "| _|0 …
srilakshmikanthanp
  • 2,231
  • 1
  • 8
  • 25
1
vote
3 answers

Extract text between two lines

I am building a bash-script to visualize the various fonts available for figlet using figlist. figlist provides output like this: Default font: standard Font directory: /usr/local/Cellar/figlet/2.2.5/share/figlet/fonts Figlet fonts in this…
D. Ben Knoble
  • 4,273
  • 1
  • 20
  • 38
1
vote
1 answer

Figlet text font size?

So i recently downloaded (http://www.figlet.org/) the figlet application to create big text our of digits and symbols for html themes. I finally managed to create my big text message using the 'Roman.flf' font and saved it to my computer (always a…
sha
  • 93
  • 1
  • 5
  • 16
0
votes
2 answers

"Timed out while waiting for the program to exit" - CS50 FIGlet

I just finished week 6 lecture and I'm doing the practice problems. I'm stuck with FIGlet, I don't understand why I get the timeout error message with check50 :/ check50 results from pyfiglet import Figlet from sys import argv import sys import…
0
votes
1 answer

Pyfiglet issues with column format

I have this code: import pyfiglet, time, sys def mecanografiar(textouwu): listapalabrasuwu = textouwu.split() for palabritas in listapalabrasuwu: sys.stdout.write(pyfiglet.figlet_format(palabritas, justify="center",…
Inby
  • 3
  • 3
0
votes
1 answer

Figlet executing after code, that should be executed earlier

I have some basic code for CLI: #!/usr/bin/env node import chalk from "chalk" import inquirer from "inquirer" import gradient from "gradient-string" import figlet from "figlet" import { createSpinner } from "nanospinner" const sleep = (ms = 2000)…
0
votes
0 answers

How to print a text as a "big ascii" text art using bash script that runs on windows

I have a bash test.sh script that does execute some commands when executed in windows-cmd. I'm literally trying to display some text at the begining in something like ASCII text format. After long searching i came to figlet which seems to be very…
Zang322
  • 85
  • 5
1
2