#true-type #font #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

#382 in GUI

Download history 17/week @ 2024-06-17 19/week @ 2024-06-24 15/week @ 2024-07-08 23/week @ 2024-07-15 48/week @ 2024-07-22 34/week @ 2024-07-29 38/week @ 2024-08-05 22/week @ 2024-08-12 5/week @ 2024-08-19 26/week @ 2024-08-26 59/week @ 2024-09-02 29/week @ 2024-09-09 22/week @ 2024-09-16 60/week @ 2024-09-23 32/week @ 2024-09-30

145 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