| OLD | NEW |
| 1 This is a README for the font compression reference code. There are several | 1 This is a README for the font compression reference code. There are several |
| 2 compression related modules in this repository. | 2 compression related modules in this repository. |
| 3 | 3 |
| 4 brotli/ contains reference code for the Brotli byte-level compression | 4 brotli/ contains reference code for the Brotli byte-level compression |
| 5 algorithm. Note that it is licensed under an Apache 2 license. | 5 algorithm. Note that it is licensed under the MIT license. |
| 6 | 6 |
| 7 src/ contains the C++ code for compressing and decompressing fonts. | 7 src/ contains the C++ code for compressing and decompressing fonts. |
| 8 | 8 |
| 9 # Build & Run | 9 # Build & Run |
| 10 | 10 |
| 11 This document documents how to run the compression reference code. At this | 11 This document documents how to run the compression reference code. At this |
| 12 writing, the code, while it is intended to produce a bytestream that can be | 12 writing, the code, while it is intended to produce a bytestream that can be |
| 13 reconstructed into a working font, the reference decompression code is not | 13 reconstructed into a working font, the reference decompression code is not |
| 14 done, and the exact format of that bytestream is subject to change. | 14 done, and the exact format of that bytestream is subject to change. |
| 15 | 15 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 39 http://www.w3.org/TR/WOFF2/ | 39 http://www.w3.org/TR/WOFF2/ |
| 40 http://www.w3.org/Submission/MTX/ | 40 http://www.w3.org/Submission/MTX/ |
| 41 | 41 |
| 42 Also please refer to documents (currently Google Docs): | 42 Also please refer to documents (currently Google Docs): |
| 43 | 43 |
| 44 WOFF Ultra Condensed file format: proposals and discussion of wire format | 44 WOFF Ultra Condensed file format: proposals and discussion of wire format |
| 45 issues (PDF is in docs/ directory) | 45 issues (PDF is in docs/ directory) |
| 46 | 46 |
| 47 WIFF Ultra Condensed: more discussion of results and compression techniques. | 47 WIFF Ultra Condensed: more discussion of results and compression techniques. |
| 48 This tool was used to prepare the data in that document. | 48 This tool was used to prepare the data in that document. |
| OLD | NEW |