#font #true-type #noto #sans

ttf-noto-sans

Noto Sans TrueType fonts for embedding into your application binary

3 releases

Uses old Rust 2015

0.1.2 Mar 5, 2023
0.1.1 Feb 4, 2017
0.1.0 Feb 2, 2017

#368 in GUI

Download history 15/week @ 2023-12-18 6/week @ 2023-12-25 16/week @ 2024-01-08 8/week @ 2024-01-15 3/week @ 2024-01-22 3/week @ 2024-02-05 9/week @ 2024-02-12 27/week @ 2024-02-19 60/week @ 2024-02-26 37/week @ 2024-03-04 27/week @ 2024-03-11 48/week @ 2024-03-18 39/week @ 2024-03-25 120/week @ 2024-04-01

240 downloads per month
Used in 5 crates

MIT/Apache

1MB

Noto Sans TrueType fonts for Rust applications

Travis CI Build Status crates.io

You can use embedded font data from your application.

By default, regular style font is embedded.

[package]
ttf-noto-sans = "0.1"

You can also use other style fonts by specifying custom features.

[package]
ttf-noto-sans = { version = "0.1", features = ["bold", "italic", "bold_italic"] }

Example (use with conrod)

extern crate conrod;
use conrod::UiBuilder;
use conrod::text::FontCollection;

let mut ui = UiBuilder::new([640.0, 480.0]).build();
let _ = ui.fonts.insert(FontCollection::from_bytes(ttf_noto_sans::REGULAR)
    .into_font()
    .expect("failed to into_font"));

Complete example is here

No runtime deps