Ubuntu下flash中的字体乱码解决方法
编辑 /etc/fonts/conf.d 下面的 49-sansserif.conf 文件
sudo gedit /etc/fonts/conf.d/49-sansserif.conf

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<!--
If the font still has no generic name, add sans-serif
-->
<match target="pattern">
<test qual="all" name="family" compare="not_eq">
<string>sans-serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>serif</string>
</test>
<test qual="all" name="family" compare="not_eq">
<string>monospace</string>
</test>
<edit name="family" mode="append_last">
<string>sans-serif</string>     //把sans-serif改成sans就可以了
</edit>
</match>
</fontconfig>

把红色粗体中的sans-serif改成sans就可以了

相关文章:

  • 2022-12-23
  • 2021-11-11
  • 2021-10-21
  • 2022-12-23
  • 2022-12-23
  • 2021-07-25
  • 2021-12-09
猜你喜欢
  • 2021-12-22
  • 2021-12-17
  • 2021-10-25
  • 2022-12-23
  • 2021-12-27
  • 2021-07-15
  • 2021-12-26
相关资源
相似解决方案