1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
//! [Ratatui](https://ratatui.rs) backend for use with [`embedded-graphics`](embedded_graphics);
//! this crate is compatible with `no_std` and renders [`mplusfonts`](../mplusfonts/index.html)
//! bitmap fonts to any [`DrawTarget`](embedded_graphics::draw_target::DrawTarget)-implementing
//! display device, so long as its associated pixel color type is one of those defined in the
//! [pixelcolor](embedded_graphics::pixelcolor) module, and its associated error type is [`Debug`].
//!
//! Support for device drivers that define their own color types — multicolor electrophoretic
//! displays — is implemented behind feature gates in [`mplusfonts`](../mplusfonts/index.html).
//! The prerequisite for adding such an implementation is that color types must implement the
//! [`Default`] and [`From<Rgb888>`] traits. As of `dumo` v0.1.0, such e-Paper display driver
//! crates are unsupported, but `weact-studio-epd` could be the first one to receive support.
//!
//! Otherwise, display drivers such as [`mipidsi`](https://crates.io/crates/mipidsi) do have
//! universal support as [`Rgb565`](embedded_graphics::pixelcolor::Rgb565) is defined in the
//! [pixelcolor](embedded_graphics::pixelcolor) module.
extern crate alloc;
pub use *;
/// Creates a fixed-width bitmap font for a cell size of 6 by 16 pixels (**Wide**/**Small**).
///
/// # Arguments
///
/// * `bit_depth` - Bit depth of glyph images. Limited to `1`, `2`, `4`, `8`.
/// * `sources` - Zero or more sources of textual data. Ranges of characters and arrays of strings.
///
/// # Examples
///
/// ```
/// let bitmap_font = dumo::font_6x16!(4, '\x20'..'\x7F', ["‹›", "«»"]);
/// ```
/// Creates a fixed-width bitmap font for a cell size of 6 by 18 pixels.
///
/// # Arguments
///
/// * `bit_depth` - Bit depth of glyph images. Limited to `1`, `2`, `4`, `8`.
/// * `sources` - Zero or more sources of textual data. Ranges of characters and arrays of strings.
///
/// # Examples
///
/// ```
/// let bitmap_font = dumo::font_6x18!(4, '\x20'..'\x7F', ["‹›", "«»"]);
/// ```
/// Creates a fixed-width bitmap font for a cell size of 8 by 20 pixels (**Wide**).
///
/// # Arguments
///
/// * `bit_depth` - Bit depth of glyph images. Limited to `1`, `2`, `4`, `8`.
/// * `sources` - Zero or more sources of textual data. Ranges of characters and arrays of strings.
///
/// # Examples
///
/// ```
/// let bitmap_font = dumo::font_8x20!(4, '\x20'..'\x7F', ["‹›", "«»"]);
/// ```
/// Creates a fixed-width bitmap font for a cell size of 8 by 24 pixels.
///
/// # Arguments
///
/// * `bit_depth` - Bit depth of glyph images. Limited to `1`, `2`, `4`, `8`.
/// * `sources` - Zero or more sources of textual data. Ranges of characters and arrays of strings.
///
/// # Examples
///
/// ```
/// let bitmap_font = dumo::font_8x24!(4, '\x20'..'\x7F', ["‹›", "«»"]);
/// ```
/// Creates a fixed-width bitmap font for a cell size of 8 by 24 pixels (**Bold**).
///
/// # Arguments
///
/// * `bit_depth` - Bit depth of glyph images. Limited to `1`, `2`, `4`, `8`.
/// * `sources` - Zero or more sources of textual data. Ranges of characters and arrays of strings.
///
/// # Examples
///
/// ```
/// let bitmap_font = dumo::font_8x24_bold!(4, '\x20'..'\x7F', ["‹›", "«»"]);
/// ```
/// Creates a fixed-width bitmap font for a cell size of 10 by 30 pixels.
///
/// # Arguments
///
/// * `bit_depth` - Bit depth of glyph images. Limited to `1`, `2`, `4`, `8`.
/// * `sources` - Zero or more sources of textual data. Ranges of characters and arrays of strings.
///
/// # Examples
///
/// ```
/// let bitmap_font = dumo::font_10x30!(4, '\x20'..'\x7F', ["‹›", "«»"]);
/// ```
/// Creates a fixed-width bitmap font for a cell size of 12 by 30 pixels (**Wide**).
///
/// # Arguments
///
/// * `bit_depth` - Bit depth of glyph images. Limited to `1`, `2`, `4`, `8`.
/// * `sources` - Zero or more sources of textual data. Ranges of characters and arrays of strings.
///
/// # Examples
///
/// ```
/// let bitmap_font = dumo::font_12x30!(4, '\x20'..'\x7F', ["‹›", "«»"]);
/// ```
/// Creates a fixed-width bitmap font for a cell size of 12 by 36 pixels.
///
/// # Arguments
///
/// * `bit_depth` - Bit depth of glyph images. Limited to `1`, `2`, `4`, `8`.
/// * `sources` - Zero or more sources of textual data. Ranges of characters and arrays of strings.
///
/// # Examples
///
/// ```
/// let bitmap_font = dumo::font_12x36!(4, '\x20'..'\x7F', ["‹›", "«»"]);
/// ```
/// Creates a fixed-width bitmap font for a cell size of 12 by 36 pixels (**Bold**).
///
/// # Arguments
///
/// * `bit_depth` - Bit depth of glyph images. Limited to `1`, `2`, `4`, `8`.
/// * `sources` - Zero or more sources of textual data. Ranges of characters and arrays of strings.
///
/// # Examples
///
/// ```
/// let bitmap_font = dumo::font_12x36_bold!(4, '\x20'..'\x7F', ["‹›", "«»"]);
/// ```
/// Creates a fixed-width bitmap font for a cell size of 14 by 42 pixels.
///
/// # Arguments
///
/// * `bit_depth` - Bit depth of glyph images. Limited to `1`, `2`, `4`, `8`.
/// * `sources` - Zero or more sources of textual data. Ranges of characters and arrays of strings.
///
/// # Examples
///
/// ```
/// let bitmap_font = dumo::font_14x42!(4, '\x20'..'\x7F', ["‹›", "«»"]);
/// ```
/// Creates a fixed-width bitmap font for a cell size of 16 by 40 pixels (**Wide**).
///
/// # Arguments
///
/// * `bit_depth` - Bit depth of glyph images. Limited to `1`, `2`, `4`, `8`.
/// * `sources` - Zero or more sources of textual data. Ranges of characters and arrays of strings.
///
/// # Examples
///
/// ```
/// let bitmap_font = dumo::font_16x40!(4, '\x20'..'\x7F', ["‹›", "«»"]);
/// ```
/// Creates a fixed-width bitmap font for a cell size of 16 by 48 pixels.
///
/// # Arguments
///
/// * `bit_depth` - Bit depth of glyph images. Limited to `1`, `2`, `4`, `8`.
/// * `sources` - Zero or more sources of textual data. Ranges of characters and arrays of strings.
///
/// # Examples
///
/// ```
/// let bitmap_font = dumo::font_16x48!(4, '\x20'..'\x7F', ["‹›", "«»"]);
/// ```
/// Creates a fixed-width bitmap font.
///
/// # Arguments
///
/// * `width` - Font width. Ranges from `100` to `125`. `100` is `NORMAL`.
/// * `weight` - Font weight. Ranges from `100` to `700`. `400` is `NORMAL`.
/// * `height` - Line height in pixels. Rounded to an integer by the text shaper.
/// * `hint` - Set to `true` to enable font hinting and adjust text shapes to a pixel grid.
/// * `bit_depth` - Bit depth of glyph images. Limited to `1`, `2`, `4`, `8`.
/// * `sources` - Zero or more sources of textual data. Ranges of characters and arrays of strings.
///
/// # Examples
///
/// ```
/// let bitmap_font = dumo::mpluscode!(125, 500, 40.133333, true, 4, '\x20'..'\x7F', ["‹›", "«»"]);
/// ```