| Crates.io | figleter |
| lib.rs | figleter |
| version | 0.2.2 |
| created_at | 2024-08-22 05:08:53.125284+00 |
| updated_at | 2024-08-22 19:00:36.155634+00 |
| description | Rust implementation of FIGlet to create ascii art. With kerning. |
| homepage | https://gitlab.com/cyloncore/figleter |
| repository | https://github.com/cyloncore/figleter |
| max_upload_size | |
| id | 1347277 |
| size | 67,203 |
A Rust library for FIGlet to generate ascii art. It is a fork from figlet-rs with kerning support.
use figleter::FIGfont;
fn main() {
let standard_font = FIGfont::standard().unwrap();
let figure = standard_font.convert("Hello Rust");
assert!(figure.is_some());
println!("{}", figure.unwrap());
}

figleter is distributed under the terms of the Apache License (Version 2.0).
See LICENSE-APACHE and COPYRIGHT for details.