Skip to content

Commit 7da0be2

Browse files
committed
Update FontArt.py
1 parent 621e619 commit 7da0be2

File tree

1 file changed

+156
-2
lines changed

1 file changed

+156
-2
lines changed

Font Art/FontArt.py

Lines changed: 156 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,160 @@
11
import os
22
from pyfiglet import Figlet
3-
text = Figlet(font="slant")
3+
text = Figlet(font="bubble")
44
os.system("cls")
55
os.system("mode con: cols=75 lines=30")
6-
print(text.renderText("Dhanush N"))
6+
with open("FontArt.txt", "w") as f:
7+
f.write(text.renderText("Randy N"))
8+
print(text.renderText("Randy N"))
9+
10+
11+
# Font Names:
12+
13+
# 3-d
14+
# 3x5
15+
# 5lineoblique
16+
# acrobatic
17+
# alligator
18+
# alligator2
19+
# alphabet
20+
# avatar
21+
# banner
22+
# banner3-D
23+
# banner3
24+
# banner4
25+
# barbwire
26+
# basic
27+
# bell
28+
# big
29+
# bigchief
30+
# binary
31+
# block
32+
# bubble
33+
# bulbhead
34+
# calgphy2
35+
# caligraphy
36+
# catwalk
37+
# chunky
38+
# coinstak
39+
# colossal
40+
# computer
41+
# contessa
42+
# contrast
43+
# cosmic
44+
# cosmike
45+
# cricket
46+
# cursive
47+
# cyberlarge
48+
# cybermedium
49+
# cybersmall
50+
# diamond
51+
# digital
52+
# doh
53+
# doom
54+
# dotmatrix
55+
# drpepper
56+
# eftichess
57+
# eftifont
58+
# eftipiti
59+
# eftirobot
60+
# eftitalic
61+
# eftiwall
62+
# eftiwater
63+
# epic
64+
# fender
65+
# fourtops
66+
# fuzzy
67+
# goofy
68+
# gothic
69+
# graffiti
70+
# hollywood
71+
# invita
72+
# isometric1
73+
# isometric2
74+
# isometric3
75+
# isometric4
76+
# italic
77+
# ivrit
78+
# jazmine
79+
# jerusalem
80+
# katakana
81+
# kban
82+
# larry3d
83+
# lcd
84+
# lean
85+
# letters
86+
# linux
87+
# lockergnome
88+
# madrid
89+
# marquee
90+
# maxfour
91+
# mike
92+
# mini
93+
# mirror
94+
# mnemonic
95+
# morse
96+
# moscow
97+
# nancyj-fancy
98+
# nancyj-underlined
99+
# nancyj
100+
# nipples
101+
# ntgreek
102+
# o8
103+
# ogre
104+
# pawp
105+
# peaks
106+
# pebbles
107+
# pepper
108+
# poison
109+
# puffy
110+
# pyramid
111+
# rectangles
112+
# relief
113+
# relief2
114+
# rev
115+
# roman
116+
# rot13
117+
# rounded
118+
# rowancap
119+
# rozzo
120+
# runic
121+
# runyc
122+
# sblood
123+
# script
124+
# serifcap
125+
# shadow
126+
# short
127+
# slant
128+
# slide
129+
# slscript
130+
# small
131+
# smisome1
132+
# smkeyboard
133+
# smscript
134+
# smshadow
135+
# smslant
136+
# smtengwar
137+
# speed
138+
# stampatello
139+
# standard
140+
# starwars
141+
# stellar
142+
# stop
143+
# straight
144+
# tanja
145+
# tengwar
146+
# term
147+
# thick
148+
# thin
149+
# threepoint
150+
# ticks
151+
# ticksslant
152+
# tinker-toy
153+
# tombstone
154+
# trek
155+
# tsalagi
156+
# twopoint
157+
# univers
158+
# usaflag
159+
# wavy
160+
# weird

0 commit comments

Comments
 (0)