Fonterator

Fonterator is a pure Rust font loader. When you want to render text, fonterator gives you an iterator over footile PathOps, which you can easily pass right into footile.

Simple Example

In Cargo.toml,

toml [dependencies] fonterator = "0.3.0"

In main.rs, ```rust extern crate fonterator; extern crate footile;

use fonterator::FontChain; use footile::{FillRule, Plotter, Raster, Rgba8};

fn main() { // Load the default FontChain (font and fallbacks). let font = FontChain::default();

// Init rendering
let mut p = Plotter::new(2048, 2048);
let mut r = Raster::new(p.width(), p.height());

// Render the text
let path = font.render(
    "Héllö,\nWørłd!‽i", /*text*/
    (0.0, 0.0),         /*position*/
    (256.0, 256.0),     /*size*/
);
r.over(
    p.fill(path, FillRule::NonZero),
    Rgba8::rgb(0, 0, 0), /*color*/
);
r.write_png("main.png").unwrap(); /*save as PNG*/

} ```

Features

TODO

Links


Plop Grizzly