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
|
libskrift is a text drawing library for C that is based on libschrift.
The name:
Schrift in libschift is German for “font” (can also mean “scripture”),
skrift in libskrift is Swedish for “scripture” (cannot mean “font”).
Currently implemented:
Anti-aliased rendering.
Subpixel rendering (RGB, BGR, both horizontal and vertical).
DPI support. (Points, inches, and millimeters can be
exactly converted pixels.)
(Both horizonal and vertical resolution can be specified.)
Drawing coloured text with 3 primaries, alpha and opacity,
(100% opacity but 0% alpha will cut out the text so it is
transparent, rather than at least as opaque as the background,
where the text is.)
Drawing on RGB, XRGB, ARGB, and RGBA with 8-bit, 16-bit,
32-bit, and 64-bit subpixels, RGB, ARGB, and RGBA with
`float`, `double`, and `long double`, with either
premultipled or non-premultipied alpha.
(The "RGB" in all these formats can be any primitive, but
the screen's is assumed for subpixel rendering, pre- and
postprocessors can be used to change colour space if
required.)
Drawing on surfaces encoded with different endians: host
endian, big endian, or little endian, either on pixel level
or subpixel level.
sRGB gamma function.
Pending support in libschift:
Aliased rendering.
Hinting.
(Better subpixel rendering requires subpixel aware hinting.)
Affine transformations on glyphs, texts, part of outline.
Kerning using font information.
Proper grapheme cluster support.
Not implemented yet
Glyph caching.
Normalise text when glyphs are missing.
Fallback fonts.
Font metrics.
Autokerning.
Vertical text.
Inter-character spacing.
Text shaping.
Font searching.
Out of scope:
Bidirection text.
Text justification.
Line breaks.
Multicolouring.
Underline, overline, strike-thought, ...
Superscript and subscript.
|