#font #graphics #typography #kerning #textrendering

aloe-font

Aloe Font is a Rust library providing extensive tools for advanced font rendering and manipulation. It supports a myriad of font characteristics including style control, kerning, and reading direction adjustment, making it ideal for high-fidelity text rendering applications. This crate is a translation of the c++ juce module serving the same function.

1 unstable release

Uses new Rust 2024

new 0.1.2 Apr 2, 2025

#20 in #typography

38 downloads per month
Used in 160 crates (19 directly)

GPL-3.0 license

2MB
13K SLoC

Aloe Font Crate

Aloe Font is a Rust library providing comprehensive tools for advanced font rendering and manipulation. This library excels in providing control over numerous font characteristics such as style, size, and kerning which are crucial for high-fidelity text rendering.

Explore complex font operations with elegantly designed enums and traits implementing behaviors like FontStyleFlags, WordWrap, and ReadingDirection, allowing seamless font style customization and text alignment.

Features

  • Font Rendering: Integrate sophisticated typeface management, perfect for applications requiring detailed font handling.
  • Style Manipulation: Configure font attributes including bold, italic, and underlined styles through the FontStyleFlags enum.
  • Text Wrapping: Dictate text layout using the WordWrap enum, enabling wrapping by word or character.
  • Reading Direction: Switch text reading flows between natural, left-to-right, or right-to-left with the ReadingDirection enum.

Usage Examples

Below is an illustrative example of how to use Aloe Font to render text:

use aloe_font::{Font, FontStyleFlags, WordWrap};

fn main() {
    // Create a font instance with different styles
    let font = Font::new_from_font_height_and_style_flags(12.0, FontStyleFlags::bold | FontStyleFlags::italic);
    
    // Setup word wrapping
    let wrap = WordWrap::byWord;
    
    // Render text using the configured font
    let text = "Typography is the art and technique of arranging type";
    let width = font.get_string_width(&text.to_string());
    println!("The computed width of the string is: {}", width);
}

Installation

Add the following to your Cargo.toml under [dependencies]:

aloe-font = "0.1.0"

License

This project is licensed under the terms of the GPL-3.0 license.

Contributions

Contributions are welcome! Please fork the repository and submit a pull request on our GitHub repository.

Disclaimer: This README.md has been generated by an AI model and may not be 100% accurate, however, it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~22–36MB
~563K SLoC