figleter 0.2.2

Rust implementation of FIGlet to create ascii art. With kerning.
Documentation
  • Coverage
  • 31.03%
    9 out of 29 items documented1 out of 9 items with examples
  • Size
  • Source code size: 66.86 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.4 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • cyrilleberger

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.