bitmap-font 0.1 works with embedded-graphics 0.6! Version 0.7 includes a lot of changes to the font/text rendering system, including the introduction of the MonoFont
type that is similar to the BitmapFont
type from this crate. However, it seems to be impossible to use pixel-double versions of the fonts included in eg 0.7, so it does not offer all functionality of this crate.
This crate provides bitmap fonts for the embedded-graphics
crate without requiring generics. All fonts provided are concrete, constant instances of BitmapFont
. This means you can use these bitmap fonts without any generics, unlike those fonts shipped with embedded-graphics
where each font is implemented via its own struct. Also, this allows pixel-double fonts to share their bitmap data with the non-doubled font, reducing the flash size required.
```rust use bitmapfont::{BitmapFont, WithFont, FONT7x13}; use embedded_graphics::{fonts::Text, prelude::*};
let font: BitmapFont = FONT7x13; let text = Text::new("Hello World!", Point::zero()); text.withfont(font, BinaryColor::On).draw(&mut display)?; ```
This crate is guaranteed to always build with the latest stable rust version. MSRV is documented; however, for your information only. Changing the MSRV can be done at any point in time and is not considered a breaking change.
Copyright (C) 2021 Dominic Meiser and [contributors].
``` Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ```
This license applies to the raw bitmap font data included in this crate.
``` Copyright 2011 Suraj N. Kurapati https://github.com/sunaku/tamzen-font
Tamzen font is free. You are hereby granted permission to use, copy, modify, and distribute it as you see fit.
Tamzen font is provided "as is" without any express or implied warranty.
The author makes no representations about the suitability of this font for a particular purpose.
In no event will the author be held liable for damages arising from the use of this font. ```