# figlet-rs
[](https://travis-ci.com/yuanbohan/rs-figlet)
[](https://docs.rs/figlet-rs)
[](https://crates.io/crates/figlet-rs)
A Rust library for [FIGlet](http://www.figlet.org/) to generate ascii art.
## Example
```rust
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](LICENSE-APACHE) and [COPYRIGHT](COPYRIGHT) for details.