bdf2sfd

BDF to SFD converter, allowing to vectorize bitmap fonts
Log | Files | Refs | README | LICENSE

commit 090685b3260b37684f7e9bc335f3996acdba1635
parent def7f3fa6fca7ace63e820bc58cba704d066a550
Author: Frederic Cambus <fred@statdns.com>
Date:   Sat, 14 Dec 2019 20:40:58 +0100

Emit 'EndChars' and 'EndSplineFont' markers in output data.

Diffstat:
Msrc/bdftosfd.c | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/bdftosfd.c b/src/bdftosfd.c @@ -4,7 +4,7 @@ * https://github.com/fcambus/bdftosfd * * Created: 2019-11-21 - * Last Updated: 2019-12-03 + * Last Updated: 2019-12-14 * * bdftosfd is released under the BSD 2-Clause license * See LICENSE file for details @@ -145,6 +145,9 @@ main(int argc, char *argv[]) { } } + fprintf(stdout, "EndChars\n"); + fprintf(stdout, "EndSplineFont\n"); + /* Stopping timer */ clock_gettime(CLOCK_MONOTONIC, &end);