25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20-unhint-small-vera.conf 1.1 KiB

11 년 전
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3. <fontconfig>
  4. <!--
  5. The Bitstream Vera fonts have GASP entries suggesting that hinting be
  6. disabled below 8 ppem, but FreeType ignores those, preferring to use
  7. the data found in the instructed hints. The initial Vera release
  8. didn't include the right instructions in the 'prep' table. Fix this
  9. by disabling hinting manually at smaller sizes (< 8ppem)
  10. -->
  11. <match target="font">
  12. <test name="family">
  13. <string>Bitstream Vera Sans</string>
  14. </test>
  15. <test name="pixelsize" compare="less">
  16. <double>7.5</double>
  17. </test>
  18. <edit name="hinting">
  19. <bool>false</bool>
  20. </edit>
  21. </match>
  22. <match target="font">
  23. <test name="family">
  24. <string>Bitstream Vera Serif</string>
  25. </test>
  26. <test name="pixelsize" compare="less">
  27. <double>7.5</double>
  28. </test>
  29. <edit name="hinting">
  30. <bool>false</bool>
  31. </edit>
  32. </match>
  33. <match target="font">
  34. <test name="family">
  35. <string>Bitstream Vera Sans Mono</string>
  36. </test>
  37. <test name="pixelsize" compare="less">
  38. <double>7.5</double>
  39. </test>
  40. <edit name="hinting">
  41. <bool>false</bool>
  42. </edit>
  43. </match>
  44. </fontconfig>