TRUETYPE 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. How to enable the TrueType native hinter if you need it
  2. -------------------------------------------------------
  3. The TrueType bytecode interpreter is disabled in all public releases
  4. of the FreeType packages for patents reasons; see
  5. http://www.freetype.org/patents.html
  6. for more details.
  7. However, many Linux distributions do enable the interpreter in the
  8. FreeType packages (DEB/RPM/etc.) they produce for their platforms. If
  9. you are using TrueType fonts on your system, you most probably want to
  10. enable it manually by doing the following:
  11. - open the file `include/freetype/config/ftoption.h'
  12. - locate a line that says:
  13. /* #define TT_CONFIG_OPTION_BYTECODE_INTERPRETER */
  14. - change it to:
  15. #define TT_CONFIG_OPTION_BYTECODE_INTERPRETER
  16. These steps must be done _before_ compiling the library.
  17. ------------------------------------------------------------------------
  18. Copyright 2003, 2005, 2006 by
  19. David Turner, Robert Wilhelm, and Werner Lemberg.
  20. This file is part of the FreeType project, and may only be used,
  21. modified, and distributed under the terms of the FreeType project
  22. license, LICENSE.TXT. By continuing to use, modify, or distribute this
  23. file you indicate that you have read the license and understand and
  24. accept it fully.
  25. --- end of TRUETYPE ---