#true-type-font #sans #noto #true-type #font

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

#1193 in GUI

Download history 38/week @ 2025-11-05 38/week @ 2025-11-12 41/week @ 2025-11-19 18/week @ 2025-11-26 12/week @ 2025-12-03 28/week @ 2025-12-10 32/week @ 2025-12-17 16/week @ 2025-12-24 11/week @ 2025-12-31 5/week @ 2026-01-07 27/week @ 2026-01-14 24/week @ 2026-01-21 27/week @ 2026-01-28 12/week @ 2026-02-04 12/week @ 2026-02-11 22/week @ 2026-02-18

76 downloads per month
Used in 4 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