如何在Wine中启用字体抗锯齿?


24

在某些Wine应用程序(例如Word 2007)中的字体具有较高的别名。如何为Wine应用程序打开抗锯齿功能?

Answers:


29

最简单的方法是通过 winetricks

mkdir ~/bin
cd ~/bin
wget http://winetricks.org/winetricks
chmod +x ./winetricks

winetricks fontsmooth-rgb

在较新版本中winetricks使用的命令是

winetricks settings fontsmooth=rgb

还有其他LCD像素订单。您可以在其WineHQ网站上阅读有关它们以及其他令人印象深刻的winetricks功能列表的信息。


6
也可以通过apt
RolandiXor

@Roland,但我无法证明它是哪个版本。尽管逻辑不适用于如此简单winetricks的事物,但是如果您遵循大量使用它的安装指南,则这是您希望保持最新的事物之一。
奥利(Oli)

1
酒PPA已更新版本:D,因此您可以将其用作附加选项^^
RolandiXor

4

只需为需要的人添加详细信息到Oli的答案中:winetricks settings fontsmooth=rgb实际要做的就是创建和导入具有以下内容的注册表文件:

REGEDIT4

[HKEY_CURRENT_USER\Control Panel\Desktop]
"FontSmoothing"="2"
"FontSmoothingGamma"=dword:00000578
"FontSmoothingOrientation"=dword:00000001
"FontSmoothingType"=dword:00000002

将其保存为以下内容后fontsmoothing.reg,可以导入:

wine regedit fontsmoothing.reg

2
为什么不是默认值?
Jay _silly_evarlast_ Wren's
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.