Linux X 服务器与 wine 的抗锯齿问题

Linux X 服务器与 wine 的抗锯齿问题

我正在 Linux 下通过 wine 使用 Windows 程序。该程序在 KDE 下运行良好。没有在 gnome 上测试它。最后,我们想在没有 KDE 的情况下启动该程序 - 类似于 kiosk 模式,这样用户就不能使用除了这个 gui 程序之外的任何东西。我这样做:

startx the_program.exe

程序运行并且可以工作,但是字体根本没有抗锯齿。xfs 服务器已启动:

[root@mclive5 ~]# chkconfig --list|grep -i xfs
xfs             0:off   1:off   2:on    3:on    4:on    5:on    6:off

启动火狐浏览器“运行良好,并且具有抗锯齿功能。

Linux 发行版是 CentOS 5.5,wine 是 1.2.1(来自 romforge 的 1.2.1-1.el5.rf)

关于如何开启抗锯齿功能,有什么想法吗?

答案1

解决了!我在名为“wine.reg”的文件中写了以下内容:

REGEDIT4

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

然后我运行:

wine regedit wine.reg

效果很好

相关内容