2016-11-15 12:10:21 +00:00
|
|
|
# font_to_py.py
|
|
|
|
|
2019-09-08 16:25:51 +00:00
|
|
|
Convert a font file to Python source code. Python font files provide a much
|
|
|
|
faster way to access glyphs than the principal alternative which is a random
|
|
|
|
access file on the filesystem.
|
|
|
|
|
|
|
|
Another benefit is that they can save large amounts of RAM on resource-limited
|
|
|
|
targets: the font file may be incorporated into a firmware build such that it
|
|
|
|
occupies flash memory rather than scarce RAM. Python code built into firmware
|
|
|
|
is known as frozen bytecode.
|
2016-11-15 12:10:21 +00:00
|
|
|
|
2019-10-17 06:32:27 +00:00
|
|
|
## Recent revisions
|
2019-09-07 10:55:12 +00:00
|
|
|
|
2019-10-17 06:32:27 +00:00
|
|
|
17 Oct 2019 V0.33 With thanks to Stephen Irons (@ironss).
|
|
|
|
1. Fix bug where input rather than output filename was checked.
|
2019-10-18 12:25:56 +00:00
|
|
|
2. Add `baseline()` to ouput file returning the maximum ascent.
|
2019-10-17 12:58:16 +00:00
|
|
|
3. Correct left position of rendered glyph.
|
2019-10-17 06:32:27 +00:00
|
|
|
|
|
|
|
21 Sept 2019 V0.22
|
2019-09-07 10:55:12 +00:00
|
|
|
|
2019-09-08 16:25:51 +00:00
|
|
|
1. Reduced output file size for sparse fonts. These result from large gaps
|
|
|
|
between ordinal values of Unicode characters not in the standard ASCII set.
|
|
|
|
2. Output file has comment showing creation command line.
|
|
|
|
3. Repo includes the file `extended`. Using `-k extended` creates fonts
|
2019-09-21 04:24:02 +00:00
|
|
|
comprising the printable ASCII set plus `°μπωϕθαβγδλΩ£`. Such a font has 96
|
2019-09-08 16:25:51 +00:00
|
|
|
chars having ordinal values from 32-981.
|
|
|
|
4. Improvements to `font_test.py`.
|
2019-09-21 04:24:02 +00:00
|
|
|
5. Code emitted for sparse fonts now uses non-recursive search algorithm.
|
2019-09-08 16:25:51 +00:00
|
|
|
|
|
|
|
Python files produced are interchangeable with those from prior versions: the
|
|
|
|
API is unchanged.
|
2019-09-07 10:55:12 +00:00
|
|
|
|
2018-08-14 16:22:21 +00:00
|
|
|
###### [Main README](./README.md)
|
2018-06-02 11:03:11 +00:00
|
|
|
|
2018-08-14 16:22:21 +00:00
|
|
|
# Dependencies
|
|
|
|
|
|
|
|
The utility requires Python 3.2 or greater, also `freetype` which may be
|
2019-09-07 10:55:12 +00:00
|
|
|
installed using `pip3`. On Linux (you may need a root prompt):
|
2018-06-02 11:03:11 +00:00
|
|
|
|
|
|
|
```shell
|
|
|
|
# apt-get install python3-pip
|
|
|
|
# pip3 install freetype-py
|
|
|
|
```
|
|
|
|
|
2016-11-15 12:10:21 +00:00
|
|
|
# Usage
|
|
|
|
|
2018-07-04 06:38:00 +00:00
|
|
|
`font_to_py.py` is a command line utility written in Python 3. It is run on a
|
|
|
|
PC. It takes as input a font file with a `ttf` or `otf` extension and a
|
2016-11-15 12:10:21 +00:00
|
|
|
required height in pixels and outputs a Python 3 source file. The pixel layout
|
|
|
|
is determined by command arguments. By default fonts are stored in variable
|
|
|
|
pitch form. This may be overidden by a command line argument.
|
|
|
|
|
2019-09-07 10:55:12 +00:00
|
|
|
By default the printable ASCII character set (ordinal values 32 to 126
|
|
|
|
inclusive) is supported (i.e. not including control characters). Command line
|
|
|
|
arguments can modify this range as required to specify arbitrary sets of
|
|
|
|
Unicode characters. Non-English and non-contiguous character sets may be
|
|
|
|
defined.
|
2017-01-12 15:48:26 +00:00
|
|
|
|
2016-11-15 12:10:21 +00:00
|
|
|
Further arguments ensure that the byte contents and layout are correct for the
|
|
|
|
target display hardware. Their usage should be specified in the documentation
|
|
|
|
for the device driver.
|
|
|
|
|
2019-09-08 16:37:27 +00:00
|
|
|
Examples of usage to produce Python fonts with a height of 23 pixels:
|
2019-09-08 16:25:51 +00:00
|
|
|
```shell
|
|
|
|
$ font_to_py.py FreeSans.ttf 23 myfont.py
|
|
|
|
$ font_to_py.py -k extended FreeSans.ttf 23 my_extended_font.py
|
|
|
|
```
|
2016-11-15 12:10:21 +00:00
|
|
|
## Arguments
|
|
|
|
|
|
|
|
### Mandatory positional arguments:
|
|
|
|
|
|
|
|
1. Font file path. Must be a ttf or otf file.
|
|
|
|
2. Height in pixels.
|
2019-09-08 16:37:27 +00:00
|
|
|
3. Output file path. Filename must have a .py extension (unless writing a
|
|
|
|
binary font).
|
2016-11-15 12:10:21 +00:00
|
|
|
|
|
|
|
### Optional arguments:
|
|
|
|
|
|
|
|
* -f or --fixed If specified, all characters will have the same width. By
|
|
|
|
default fonts are assumed to be variable pitch.
|
2017-01-12 15:48:26 +00:00
|
|
|
* -x or --xmap Specifies horizontal mapping (default is vertical).
|
|
|
|
* -r or --reverse Specifies bit reversal in each font byte.
|
|
|
|
* -s or --smallest Ordinal value of smallest character to be stored. Default
|
|
|
|
32 (ASCII space).
|
|
|
|
* -l or --largest Ordinal value of largest character to be stored. Default 126.
|
|
|
|
* -e or --errchar Ordinal value of character to be rendered if an attempt is
|
2019-09-07 10:55:12 +00:00
|
|
|
made to display an out-of-range character. Default 63 (ord("?")).
|
2018-09-06 10:38:52 +00:00
|
|
|
* -i or --iterate Specialist use. See below.
|
2018-08-20 06:45:39 +00:00
|
|
|
* -c or --charset Option to restrict the characters in the font to a specific
|
|
|
|
set. See below.
|
2018-08-28 10:52:33 +00:00
|
|
|
* -k or --charset_file Obtain the character set from a file. Typical use is
|
|
|
|
for alternative character sets such as Cyrillic: the file must contain the
|
2019-09-06 08:06:23 +00:00
|
|
|
character set to be included. An example file is `cyrillic`. Another is
|
2019-09-08 16:25:51 +00:00
|
|
|
`extended` which adds unicode characters `°μπωϕθαβγδλΩ` to those in the
|
|
|
|
original ASCII set of printable characters. At risk of stating the obvious
|
|
|
|
this will only produce useful results if the source font file includes all
|
|
|
|
specified glyphs.
|
2018-08-20 06:45:39 +00:00
|
|
|
|
2018-08-31 10:17:58 +00:00
|
|
|
The -c option may be used to reduce the size of the font file by limiting the
|
|
|
|
character set. If the font file is frozen as bytecode this will not reduce RAM
|
|
|
|
usage but it will conserve flash. Example usage for a digital clock font:
|
2018-08-20 06:45:39 +00:00
|
|
|
|
|
|
|
```shell
|
2018-08-20 10:54:36 +00:00
|
|
|
$ font_to_py.py Arial.ttf 20 arial_clock.py -c 1234567890:
|
2018-08-20 06:45:39 +00:00
|
|
|
```
|
2018-08-28 10:52:33 +00:00
|
|
|
Example usage with the -k option:
|
|
|
|
```shell
|
2018-08-31 10:17:58 +00:00
|
|
|
font_to_py.py FreeSans.ttf 20 freesans_cyr_20.py -k cyrillic
|
2019-09-07 10:55:12 +00:00
|
|
|
font_to_py.py -x -k extended FreeSans.ttf 17 font10.py
|
2018-08-28 10:52:33 +00:00
|
|
|
```
|
|
|
|
|
2019-09-07 10:55:12 +00:00
|
|
|
If a character set is specified via `-c` or `-k`, then `--smallest` and
|
|
|
|
`--largest` should not be specified: these values are computed from the
|
|
|
|
character set.
|
2019-09-06 08:06:23 +00:00
|
|
|
|
2017-01-12 15:48:26 +00:00
|
|
|
Any requirement for arguments -xr will be specified in the device driver
|
|
|
|
documentation. Bit reversal is required by some display hardware.
|
2016-11-15 12:10:21 +00:00
|
|
|
|
2019-10-18 12:25:56 +00:00
|
|
|
Using the -f argument with a variable pitch source font will produce a fixed
|
|
|
|
pitch result. A better apearance would be achieved by using a font designed as
|
|
|
|
monospaced.
|
|
|
|
|
2019-09-07 10:55:12 +00:00
|
|
|
There have been reports that producing fonts with Unicode characters outside
|
|
|
|
the ASCII set from ttf files is unreliable. If expected results are not
|
|
|
|
achieved, use an otf font. I have successfully created Cyrillic and extended
|
|
|
|
fonts from a `ttf`, so I suspect the issue may be source fonts lacking the
|
|
|
|
required glyphs.
|
2018-03-11 11:01:46 +00:00
|
|
|
|
2018-09-06 10:38:52 +00:00
|
|
|
The `-i` or `--iterate` argument. For specialist applications. Specifying this
|
|
|
|
causes a generator function `glyphs` to be included in the Python font file. A
|
|
|
|
generator instantiated with this will yield `bitmap`, `height`, and `width` for
|
|
|
|
every glyph in the font.
|
|
|
|
|
2016-11-20 17:12:32 +00:00
|
|
|
### Output
|
|
|
|
|
|
|
|
The specified height is a target. The algorithm gets as close to the target
|
|
|
|
height as possible (usually within one pixel). The actual height achieved is
|
2017-01-12 15:48:26 +00:00
|
|
|
displayed on completion, along with the width of the widest character.
|
2016-11-20 17:12:32 +00:00
|
|
|
|
|
|
|
A warning is output if the output filename does not have a .py extension as the
|
|
|
|
creation of a binary font file may not be intended.
|
|
|
|
|
2016-11-15 12:10:21 +00:00
|
|
|
## The font file
|
|
|
|
|
2018-07-04 06:38:00 +00:00
|
|
|
Assume that the you have employed the utility to create a file `myfont.py`. In
|
2016-11-15 12:10:21 +00:00
|
|
|
your code you will issue
|
|
|
|
|
|
|
|
```python
|
|
|
|
import myfont
|
|
|
|
```
|
|
|
|
|
2018-07-04 06:38:00 +00:00
|
|
|
The `myfont` module name will then be used to instantiate a `Writer` object
|
2016-11-15 13:58:52 +00:00
|
|
|
to render strings on demand. A practical example may be studied
|
2018-08-20 10:34:49 +00:00
|
|
|
[here](./writer/writer_demo.py).
|
|
|
|
The detailed layout of the Python file may be seen [here](./writer/DRIVERS.md).
|
2016-11-15 12:10:21 +00:00
|
|
|
|
2019-10-18 12:25:56 +00:00
|
|
|
### Python font files
|
|
|
|
|
|
|
|
These start with a comment which is the command line used to create the font.
|
|
|
|
|
|
|
|
They include the following functions:
|
|
|
|
1. `height()` Height of bitmaps in pixels (all are the same height).
|
|
|
|
2. `max_width()` Width of widest glyph in pixels.
|
|
|
|
3. `baseline()` Offset from top of the bitmap to the baseline. This is a
|
|
|
|
notional "ruler line" where glyphs are drawn. Enables rendering different
|
|
|
|
fonts on a common baseline. It is a positive number of pixels.
|
|
|
|
4. `hmap()` `True` if bitmaps are horizonataly mapped.
|
|
|
|
5. `reverse()` `True` if bit reversal is used.
|
|
|
|
6. `monospaced()` `True` if bitmaps were created with fixed pitch.
|
|
|
|
7. `min_ch()` Returns smallest ordinal value in font.
|
|
|
|
8. `max_ch()` Largest ordinal value in font.
|
2019-10-18 12:28:49 +00:00
|
|
|
9. `get_ch()` Arg: a Unicode character. Returns three items:
|
2019-10-18 12:28:19 +00:00
|
|
|
A memoryview into the bitmap for that character.
|
|
|
|
Bitmap height in pixels. Equal to `height()` above.
|
|
|
|
Bitmap width in pixels.
|
2019-10-18 12:25:56 +00:00
|
|
|
|
2016-11-18 18:10:03 +00:00
|
|
|
### Binary font files
|
|
|
|
|
2018-07-04 06:38:00 +00:00
|
|
|
There is an option to create a binary font file, specified with a `-b` or
|
|
|
|
`--binary` command line argument. In this instance the output filename must
|
|
|
|
not have a `.py` extension. This is primarily intended for the e-paper driver
|
2017-01-12 15:48:26 +00:00
|
|
|
in applications where the file is to be stored on the display's internal flash
|
2016-11-18 18:10:03 +00:00
|
|
|
memory rather than using frozen Python modules.
|
|
|
|
|
2017-01-12 15:48:26 +00:00
|
|
|
The technique of accessing character data from a random access file is slow
|
|
|
|
and thus probably only applicable to devices such as e-paper where the update
|
|
|
|
time is slow.
|
|
|
|
|
|
|
|
Binary files currently support only the standard ASCII character set. There is
|
|
|
|
no error character: the device driver must ensure that seeks are within range.
|
2019-09-08 16:37:27 +00:00
|
|
|
Only the following optional arguments are valid:
|
2017-01-12 15:48:26 +00:00
|
|
|
|
2019-09-08 16:37:27 +00:00
|
|
|
* -f or --fixed.
|
|
|
|
* -x or --xmap.
|
|
|
|
* -r or --reverse.
|
2016-11-18 18:10:03 +00:00
|
|
|
|
2016-11-15 12:10:21 +00:00
|
|
|
# Dependencies, links and licence
|
|
|
|
|
2018-08-31 10:17:58 +00:00
|
|
|
The code is released under the MIT licence. The `font_to_py.py` utility
|
|
|
|
requires Python 3.2 or later.
|
2016-11-15 12:10:21 +00:00
|
|
|
|
|
|
|
The module relies on [Freetype](https://www.freetype.org/) which is included in most Linux distributions.
|
|
|
|
It uses the [Freetype Python bindings](http://freetype-py.readthedocs.io/en/latest/index.html)
|
|
|
|
which will need to be installed.
|
|
|
|
My solution draws on the excellent example code written by Daniel Bader. This
|
2018-08-31 10:17:58 +00:00
|
|
|
may be viewed [here](https://dbader.org/blog/monochrome-font-rendering-with-freetype-and-python)
|
|
|
|
and [here](https://gist.github.com/dbader/5488053).
|
2016-11-15 12:10:21 +00:00
|
|
|
|
2019-09-07 10:55:12 +00:00
|
|
|
# Appendix 1: RAM utilisation Test Results
|
2016-11-15 12:10:21 +00:00
|
|
|
|
2018-08-14 16:22:21 +00:00
|
|
|
The supplied `freesans20.py` and `courier20.py` files were frozen as bytecode
|
|
|
|
on a Pyboard V1.0. The following code was pasted at the REPL:
|
2016-11-15 12:10:21 +00:00
|
|
|
|
|
|
|
```python
|
|
|
|
import gc, micropython
|
|
|
|
gc.collect()
|
|
|
|
micropython.mem_info()
|
|
|
|
|
2018-08-14 16:22:21 +00:00
|
|
|
import freesans20
|
|
|
|
|
|
|
|
gc.collect()
|
|
|
|
micropython.mem_info()
|
|
|
|
|
|
|
|
import courier20
|
2016-11-15 12:10:21 +00:00
|
|
|
|
|
|
|
gc.collect()
|
|
|
|
micropython.mem_info()
|
|
|
|
|
|
|
|
def foo():
|
2018-08-14 16:22:21 +00:00
|
|
|
addr, height, width = freesans20.get_ch('a')
|
2016-11-15 12:10:21 +00:00
|
|
|
|
|
|
|
foo()
|
|
|
|
|
|
|
|
gc.collect()
|
|
|
|
micropython.mem_info()
|
2018-08-14 16:22:21 +00:00
|
|
|
print(len(freesans20._font) + len(freesans20._index))
|
2016-11-15 12:10:21 +00:00
|
|
|
```
|
|
|
|
|
2018-08-20 12:53:20 +00:00
|
|
|
The memory used was 1712, 2032, 2384 and 2416 bytes. As increments over the
|
|
|
|
prior state this corresponds to 320, 352 and 32 bytes. The `print` statement
|
2019-09-08 16:25:51 +00:00
|
|
|
shows the RAM which would be consumed by the data arrays if they were not
|
|
|
|
frozen: this was 3956 bytes for `freesans20`.
|
2016-11-15 12:10:21 +00:00
|
|
|
|
2018-07-04 06:38:00 +00:00
|
|
|
The `foo()` function emulates the behaviour of a device driver in rendering a
|
2018-08-14 16:22:21 +00:00
|
|
|
character to a display. The local variables constitute memory which is
|
|
|
|
reclaimed on exit from the function. Its additional RAM use was 16 bytes.
|
2016-11-15 12:10:21 +00:00
|
|
|
|
2019-09-08 16:25:51 +00:00
|
|
|
Similar figures were found in recent (2019) testing on a Pyboard D.
|
|
|
|
|
2016-11-15 12:10:21 +00:00
|
|
|
## Conclusion
|
|
|
|
|
2018-08-14 16:22:21 +00:00
|
|
|
With a font of height 20 pixels RAM saving was an order of magnitude. The
|
|
|
|
saving will be greater if larger fonts are used as RAM usage is independent of
|
|
|
|
the array sizes.
|
2019-09-07 10:55:12 +00:00
|
|
|
|
2019-09-08 11:55:09 +00:00
|
|
|
# Appendix 2: Recent improvements
|
2019-09-07 10:55:12 +00:00
|
|
|
|
2019-09-08 11:55:09 +00:00
|
|
|
The representation of non-contiguous character sets such as the `extended` set
|
|
|
|
presents a challenge because the ordinal values of the Unicode characters can
|
|
|
|
be expected to span a range much greater than the number of characters in the
|
|
|
|
set. Using an index of the type used for the ASCII set would be inefficient as
|
|
|
|
most of the elements would be null (pointing to the default character).
|
2019-09-07 10:55:12 +00:00
|
|
|
|
2019-09-08 11:55:09 +00:00
|
|
|
The code now behaves as follows. If the character set contains no more than 95
|
|
|
|
characters (including the default) the emitted Python file is as before. This
|
2019-09-09 05:51:29 +00:00
|
|
|
keeps the code small and efficient for the common (default) case.
|
2019-09-08 11:55:09 +00:00
|
|
|
|
2019-09-08 16:37:27 +00:00
|
|
|
Larger character sets are assumed to be sparse and the emitted code uses an
|
|
|
|
index optimised for sparse values and a binary search algorithm.
|