summaryrefslogtreecommitdiff
path: root/third_party/fontcrunch/README.md
diff options
context:
space:
mode:
authorRoozbeh Pournader <roozbeh@google.com>2014-07-26 10:19:05 -0700
committerRoozbeh Pournader <roozbeh@google.com>2014-07-26 10:19:05 -0700
commit5a480b939b43dec473550292501a88518fe1208c (patch)
tree37e1d7f9a9795ed86211186ba2fc6bb5f9c918c3 /third_party/fontcrunch/README.md
parent1fbdd27fd4832645b44c726778817118d891d66f (diff)
Add fontcrunch to third_party.
Diffstat (limited to 'third_party/fontcrunch/README.md')
-rw-r--r--third_party/fontcrunch/README.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/third_party/fontcrunch/README.md b/third_party/fontcrunch/README.md
new file mode 100644
index 0000000..98f3981
--- /dev/null
+++ b/third_party/fontcrunch/README.md
@@ -0,0 +1,26 @@
+# Fontcrunch
+
+By Raph Levien, Google
+
+This is a tool for TrueType font spline optimization - a "simplify" command.
+It tries to create a visual match for the spline using the smallest number of TrueType points.
+It is notable for counting on-curve points interpolated between two off-curve points as "free," making useful filesize savings.
+
+It depends on fonttools, and has some legacy dependencies on [spiro-0.01](http://www.levien.com/spiro/spiro-0.01.tar.gz)
+This code is available under the Apache v2 license. Spiro code is GNU GPL v2 or later, and Spiro curves are subject to a US patent.
+
+Create 256 directories named 00 .. ff, and populate them with lots of files with .bz extension.
+Each of these is a nontrivial segment of quad beziers cut from the font, stored as a `x0 y0 x1 y1 x2 y2` line per bezier.
+Lines are represented with `(x1, y1)` at the midpoint of the two endpoints.
+
+`python fontcrunch.py gen yourfont.ttf`
+
+Runs the optimizer on each of the .bz files, producing a .bzopt.
+You can control the level of precision by editing "penalty" in the code (should of course be a parameter).
+On a fast computer, it should go through about 5 glyphs a second, depending on complexity.
+
+`make -j16 # or whatever level of parallelism makes sense on your computer`
+
+Regenerate a new TrueType font. You can look at the outlines to check the quality of the result.
+
+`python fontcrunch.py pack yourfont.ttf > /tmp/outlines.ps newfont.ttf`