figleter

Crates.iofigleter
lib.rsfigleter
version0.2.2
sourcesrc
created_at2024-08-22 05:08:53.125284
updated_at2024-08-22 19:00:36.155634
descriptionRust implementation of FIGlet to create ascii art. With kerning.
homepagehttps://gitlab.com/cyloncore/figleter
repositoryhttps://github.com/cyloncore/figleter
max_upload_size
id1347277
size67,203
(cyrilleberger)

documentation

README

figleter

docs crates.io

A Rust library for FIGlet to generate ascii art. It is a fork from figlet-rs with kerning support.

Example

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());
}

figlet-sample

License

figleter is distributed under the terms of the Apache License (Version 2.0).

See LICENSE-APACHE and COPYRIGHT for details.

Commit count: 0

cargo fmt