-
Notifications
You must be signed in to change notification settings - Fork 9
Figlet: Examples
Damian edited this page Dec 18, 2022
·
1 revision
The examples here are pretty basic. For a more extensive idea of what you could do with it, check out https://github.com/demonnic/figinator
These all assume you've installed the MDK package, required figlet, and loaded the included font like so:
local fig = require("MDK.figlet")
fig.readfont(getMudletHomeDir() .. "/MDK/Big.flf")
echo(fig.getString("Test"))
_______ _
|__ __| | |
| | ___ ___ | |_
| | / _ \ / __| | __|
| | | __/ \__ \ | |_
|_| \___| |___/ \__|
-- echo(fig.getString("Test", true))
echo(fig.getKern("Test"))
_______ _
|__ __| | |
| | ___ ___ | |_
| | / _ \/ __|| __|
| | | __/\__ \| |_
|_| \___||___/ \__|
-- echo(fig.getString("Test", nil, true))
echo(fig.getSmush("Test"))
_______ _
|__ __| | |
| | ___ ___| |_
| | / _ / __| __|
| | | __\__ | |_
|_| \___|___/\__|