You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<spanclass="gray">(Section written by [@phip1611](https://github.com/phip1611))</span>
89
+
90
+
Philipp Schuster released an initial version of his [noto-sans-mono-bitmap](https://github.com/phip1611/noto-sans-mono-bitmap-rs)
91
+
crate this month. It provides a pre-rasterized bitmap font from *Noto Sans Mono*, an open font from Google.
92
+
The crate is a replacement for legacy bitmap fonts, such as the [font8x8 crate](https://crates.io/crates/font8x8).
93
+
It is suitable for printing high quality/nice looking text to a framebuffer in bootloaders, kernels and similar
94
+
environments where you don't want or can't use the FPU.
95
+
96
+
To avoid CPU intensive soft float workloads, the crate contains pre-rendered symbols from the [Noto Sans Mono font](https://fonts.google.com/noto/specimen/Noto+Sans+Mono)
97
+
in different sizes and font weights (light, regular, bold) as Rust constants paired with a convenient getter function.
98
+
99
+

100
+
101
+
The screenshot above shows text that is rendered into an UEFI framebuffer using the bitmap font
102
+
from `noto-sans-mono-bitmap`.
103
+
104
+
An example of usage can be found in [PR#213](https://github.com/rust-osdev/bootloader/pull/213) of the
105
+
`rust-osdev/bootloader` crate, where this crate was merged and replaced `font8x8`.
106
+
85
107
## Join Us?
86
108
87
109
Are you interested in Rust-based operating system development? Our `rust-osdev` organization is always open to new members and new projects. Just let us know if you want to join! A good way for getting in touch is our [gitter channel](https://gitter.im/rust-osdev/Lobby).
0 commit comments