diff options
Diffstat (limited to 'docs/posts/bye_bye_BDFs.html')
-rw-r--r-- | docs/posts/bye_bye_BDFs.html | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/docs/posts/bye_bye_BDFs.html b/docs/posts/bye_bye_BDFs.html deleted file mode 100644 index 3b20814..0000000 --- a/docs/posts/bye_bye_BDFs.html +++ /dev/null | |||
@@ -1,53 +0,0 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html lang="en"> | ||
3 | <head> | ||
4 | <link rel="stylesheet" href="/style.css"> | ||
5 | <meta charset="UTF-8"> | ||
6 | <meta name="viewport" content="initial-scale=1"> | ||
7 | <meta content="#ffffff" name="theme-color"> | ||
8 | <meta name="HandheldFriendly" content="true"> | ||
9 | <meta property="og:title" content="nerdypepper"> | ||
10 | <meta property="og:type" content="website"> | ||
11 | <meta property="og:description" content="a static site {for, by, about} me "> | ||
12 | <meta property="og:url" content="https://nerdypepper.tech"> | ||
13 | <body> | ||
14 | <div class="posts"> | ||
15 | <div class="post"> | ||
16 | <div class="date">07/08 2019</div> | ||
17 | <span style="font-size: 2rem; font-weight: 600"> | ||
18 | Bye Bye BDFs | ||
19 | </span> | ||
20 | <div class="post-text"> | ||
21 | <p>Glyph Bitmap Distribution Format is no more, as the creators of | ||
22 | <a href="https://pango.org">Pango</a>, one of the most widely used text rendering | ||
23 | libraries, | ||
24 | <a href="https://blogs.gnome.org/mclasen/2019/05/25/pango-future-directions/">announced</a> | ||
25 | their plans for Pango 1.44.</p> | ||
26 | |||
27 | <p>Until recently, Pango used FreeType to draw fonts. They will be moving over | ||
28 | to <a href="https://harfbuzz.org">Harfbuzz</a>, an evolution of FreeType.</p> | ||
29 | |||
30 | <p><em>Why?</em></p> | ||
31 | |||
32 | <p>In short, FreeType was hard to work with. It required complex logic, and | ||
33 | provided no advantage over Harfbuzz (other than being able to fetch | ||
34 | opentype metrics with ease).</p> | ||
35 | |||
36 | <p>Upgrading to Pango v1.44 will break your GTK applications (if you use a | ||
37 | <code>bdf</code>/<code>pcf</code> bitmap font). Harfbuzz <em>does</em> support bitmap-only OpenType fonts, | ||
38 | <code>otb</code>s. Convert your existing fonts over to <code>otb</code>s using | ||
39 | <a href="https://fontforge.github.io">FontForge</a>. It is to be noted that applications | ||
40 | such as <code>xterm</code> and <code>rxvt</code> use <code>xft</code> (X FreeType) to render fonts, and will | ||
41 | remain unaffected by the update.</p> | ||
42 | |||
43 | <p>Both <a href="https://github.com/nerdypepper/scientifica">scientifica</a> and | ||
44 | <a href="https://github.com/nerdypepper/curie">curie</a> will soon ship with bitmap-only | ||
45 | OpenType font formats.</p> | ||
46 | |||
47 | </div> | ||
48 | <a href="/index.html" class="post-end-link">← Back</a> | ||
49 | <div class="separator"></div> | ||
50 | </div> | ||
51 | </div> | ||
52 | </body> | ||
53 | </html> | ||