Merge pull request #791 from LionsPhil/doc765

Document PicoGraphics fixed_width
pull/796/head
Hel Gibbons 2023-06-23 10:01:57 +01:00 zatwierdzone przez GitHub
commit 8a6bb65d73
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -341,6 +341,7 @@ display.text(text, x, y, wordwrap, scale, angle, spacing)
* `scale` - size
* `angle` - rotation angle (Vector only!)
* `spacing` - letter spacing
* `fixed_width` - space all characters equal distance apart (monospace)
Text scale can be a whole number (integer) for Bitmap fonts, or a decimal (float) for Vector (Hershey) fonts.
@ -355,7 +356,7 @@ Draws "Hello World" in a 16px tall, 2x scaled version of the `bitmap8` font.
Sometimes you might want to measure a text string for centering or alignment on screen, you can do this with:
```python
width = display.measure_text(text, scale, spacing)
width = display.measure_text(text, scale, spacing, fixed_width)
```
The height of each Bitmap font is explicit in its name.