6 releases
0.1.5 | Feb 14, 2023 |
---|---|
0.1.4 | Oct 2, 2022 |
0.1.3 | Mar 22, 2020 |
0.1.2 | Jun 23, 2019 |
#20 in No standard library
5,563 downloads per month
Used in 45 crates
(28 directly)
22KB
449 lines
figlet-rs
A Rust library for FIGlet to generate ascii art.
Example
use figlet_rs::FIGfont;
fn main() {
let standard_font = FIGfont::standard().unwrap();
let figure = standard_font.convert("Hello Rust");
assert!(figure.is_some());
println!("{}", figure.unwrap());
}
License
rs-figlet is distributed under the terms of the Apache License (Version 2.0).
See LICENSE-APACHE and COPYRIGHT for details.
lib.rs
:
you can visit figlet
and figfont
to find more details.
you can visit fongdb
to find more font.
Examples
download small.flf
and place it to the resources
folder.
convert string literal using standard or specified font:
use figlet_rs::FIGfont;
let standard_font = FIGfont::standard().unwrap();
let figure = standard_font.convert("FIGlet");
assert!(figure.is_some());
let small_font = FIGfont::from_file("resources/small.flf").unwrap();
let figure = small_font.convert("FIGlet");
assert!(figure.is_some());