|
发现 Monaco 字体在某些字号的情况下,出来的字体是那种像素一样的效果,很烂。所以想通过 fontconfig 设置下。
- <match target="font" >
- <test name="family" qual="any" >
- <string>Monaco</string>
- </test>
- <test compare="more" name="pixelsize" >
- <int>12</int>
- </test>
- <test compare="less_eq" name="pixelsize" >
- <int>13</int>
- </test>
- <edit compare="eq" name="pixelsize" >
- <int>13</int>
- </edit>
- </match>
- <match target="font" >
- <test name="family" qual="any" >
- <string>Monaco</string>
- </test>
- <test compare="more" name="pixelsize" >
- <int>13</int>
- </test>
- <test compare="less_eq" name="pixelsize" >
- <int>14</int>
- </test>
- <edit compare="eq" name="pixelsize" >
- <int>13</int>
- </edit>
- </match>
- <match target="font" >
- <test name="family" qual="any" >
- <string>Monaco</string>
- </test>
- <test compare="more_eq" name="pixelsize" >
- <int>8</int>
- </test>
- <test compare="less_eq" name="pixelsize" >
- <int>12</int>
- </test>
- <edit compare="eq" name="pixelsize" >
- <int>12</int>
- </edit>
- </match>
复制代码
可发现在 chrome 的标题栏上面的字体,和 gnome 登录界面的输入的用户名,还是很烂,这个是怎么回事?
14px 的 Monaco 字体效果很烂。不知道有没有人遇到这个问题。 |
|