我附上了渲染不良字体的图像。

这在升级 12.04 后开始发生(在那之前我在 10.10)。chrome 版本是 22.0.1229.39 测试版。多色文本字体为“CallunaBlack”。如果我将其更改为 Arial 或 Times New Roman,则显示正确。问题可能仅限于 webfonts。
最初我有很多字体的问题。从一些早期的答案中得到暗示,我创建了 .fonts.conf 如下。这有助于正确呈现常规字体。
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<edit mode="assign" name="rgba">
<const>none</const>
</edit>
</match>
<match target="font">
<edit mode="assign" name="hinting">
<bool>true</bool>
</edit>
</match>
<match target="font">
<edit mode="assign" name="hintstyle">
<const>hintslight</const>
</edit>
</match>
<match target="font">
<edit mode="assign" name="antialias">
<bool>true</bool>
</edit>
</match>
<match target="font">
<edit mode="assign" name="lcdfilter">
<const>lcdlegacy</const>
</edit>
</match>
</fontconfig>
Run Code Online (Sandbox Code Playgroud)
我在这里尝试了不同的参数选项,但没有成功。
Firefox 上的一切看起来都不错