1translate 10 50
2setFont "sansserif" 10
3drawText 0 0 "Default hinting:"
4setFont "times" 12 normal normal default
5drawText 0 20 "The quick brown fox jumps over the lazy dog"
6
7translate 0 50
8setFont "sansserif" 10
9drawText 0 0 "No hinting:"
10setFont "times" 12 normal normal none
11drawText 0 20 "The quick brown fox jumps over the lazy dog"
12
13translate 0 50
14setFont "sansserif" 10
15drawText 0 0 "Vertical hinting:"
16setFont "times" 12 normal normal vertical
17drawText 0 20 "The quick brown fox jumps over the lazy dog"
18
19translate 0 50
20setFont "sansserif" 10
21drawText 0 0 "Full hinting:"
22setFont "times" 12 normal normal full
23drawText 0 20 "The quick brown fox jumps over the lazy dog"
24
25
26# Note: there is also the textlayout_draw command which might be interesting here.
27