A simple command-line tool that converts your text into stylish ASCII art using a predefined font.
- Converts any input string into a multi-line ASCII art banner
- Respects
\n
for multi-line input - Zero dependencies beyond Go’s standard library
- Cross-platform: Linux, macOS, Windows
-
Make sure Go (≥1.20) is installed
-
Clone and build:
git clone https://github.com/AhmedTalbii/Ascii-Art.git cd Ascii-Art go build -o ascii-art-generator main.go
# Single-line text
./ascii-art-generator "Hello, World!"
# Multi-line support
./ascii-art-generator "Line one\nLine two\nLine three"
Example Output:
$ ./ascii-art-generator "Golang"
_____ _
/ ____| | |
| | __ ___ | | __ _ _ __ __ _
| | |_ | / _ \ | | / _` | | '_ \ / _` |
| |__| | | (_) | | | | (_| | | | | | | (_| |
\_____| \___/ |_| \__,_| |_| |_| \__, |
__/ |
|___/
Coming soon: Ascii Art web is a web site that generates Ascii Art