您好 我需要启用/禁用Cleartype(或“调整Windows的外观和性能>屏幕字体的平滑边缘”)通过cmd(或任何脚本,如VBS / JS)或从注册表不用注销或者Windows重启。
可能只能为一个应用程序启用ClearType
由于
答案 0 :(得分:11)
Windows下现代的脚本编写方式是使用PowerShell。以下脚本需要2.0版,可从Windows XP SP3获得:
#requires -version 2.0
param([bool]$enable)
$signature = @'
[DllImport("user32.dll")]
public static extern bool SystemParametersInfo(
uint uiAction,
uint uiParam,
uint pvParam,
uint fWinIni);
'@
$SPI_SETFONTSMOOTHING = 0x004B
$SPI_SETFONTSMOOTHINGTYPE = 0x200B
$SPIF_UPDATEINIFILE = 0x1
$SPIF_SENDCHANGE = 0x2
$FE_FONTSMOOTHINGCLEARTYPE = 0x2
$winapi = Add-Type -MemberDefinition $signature -Name WinAPI -PassThru
if ($enable)
{
[void]$winapi::SystemParametersInfo($SPI_SETFONTSMOOTHING, 1, 0, $SPIF_UPDATEINIFILE -bor $SPIF_SENDCHANGE)
[void]$winapi::SystemParametersInfo($SPI_SETFONTSMOOTHINGTYPE, 0, $FE_FONTSMOOTHINGCLEARTYPE, $SPIF_UPDATEINIFILE -bor $SPIF_SENDCHANGE)
}
else
{
[void]$winapi::SystemParametersInfo($SPI_SETFONTSMOOTHING, 0, 0, $SPIF_UPDATEINIFILE -bor $SPIF_SENDCHANGE)
}
如果出于某种原因,您无法使用PowerShell,则需要DynamicWrapperX才能在WSH中执行WinAPI功能。您首先需要在目标计算机上注册它,然后您可以使用此VBScript:
Set WinAPI = CreateObject("DynamicWrapperX")
WinAPI.Register "user32.dll", "SystemParametersInfo", "i=uuuu"
Const SPI_SETFONTSMOOTHING = &H004B
Const SPI_SETFONTSMOOTHINGTYPE = &H200B
Const SPIF_UPDATEINIFILE = &H1
Const SPIF_SENDCHANGE = &H2
Const FE_FONTSMOOTHINGCLEARTYPE = &H2
If WScript.Arguments(0) Then
WinAPI.SystemParametersInfo SPI_SETFONTSMOOTHING, 1, 0, SPIF_UPDATEINIFILE Or SPIF_SENDCHANGE
WinAPI.SystemParametersInfo SPI_SETFONTSMOOTHINGTYPE, 0, FE_FONTSMOOTHINGCLEARTYPE, SPIF_UPDATEINIFILE Or SPIF_SENDCHANGE
Else
WinAPI.SystemParametersInfo SPI_SETFONTSMOOTHING, 0, 0, SPIF_UPDATEINIFILE Or SPIF_SENDCHANGE
End If
两个脚本都接受一个参数,0
表示禁用ClearType,1
表示启用。无需重启。
答案 1 :(得分:6)
只是为了添加更多选项,我有C#版本,添加了GetFontSmoothing。
[DllImport("user32.dll", SetLastError = true)]
static extern bool SystemParametersInfo(uint uiAction, uint uiParam, ref int pvParam, uint fWinIni);
const uint SPI_GETFONTSMOOTHING = 74;
const uint SPI_SETFONTSMOOTHING = 75;
const uint SPI_UPDATEINI = 0x1;
const UInt32 SPIF_UPDATEINIFILE = 0x1;
private Boolean GetFontSmoothing()
{
bool iResult;
int pv = 0;
/* Call to systemparametersinfo to get the font smoothing value. */
iResult = SystemParametersInfo(SPI_GETFONTSMOOTHING, 0, ref pv, 0);
if (pv > 0)
{
//pv > 0 means font smoothing is on.
return true;
}
else
{
//pv == 0 means font smoothing is off.
return false;
}
}
private void DisableFontSmoothing()
{
bool iResult;
int pv = 0;
/* Call to systemparametersinfo to set the font smoothing value. */
iResult = SystemParametersInfo(SPI_SETFONTSMOOTHING, 0, ref pv, SPIF_UPDATEINIFILE);
Console.WriteLine("Disabled: {0}", iResult);
}
private void EnableFontSmoothing()
{
bool iResult;
int pv = 0;
/* Call to systemparametersinfo to set the font smoothing value. */
iResult = SystemParametersInfo(SPI_SETFONTSMOOTHING, 1, ref pv, SPIF_UPDATEINIFILE);
Console.WriteLine("Enabled: {0}", iResult);
}
答案 2 :(得分:3)
Python版本:
# make sure you install pywin32
# from http://sourceforge.net/projects/pywin32/files/pywin32/Build%20218/
import win32con
import win32gui
win32gui.SystemParametersInfo(win32con.SPI_SETFONTSMOOTHING, True, 0) # enable only
win32gui.SystemParametersInfo(win32con.SPI_SETFONTSMOOTHINGTYPE,
win32con.FE_FONTSMOOTHINGCLEARTYPE,
win32con.SPIF_UPDATEINIFILE | win32con.SPIF_SENDCHANGE)
答案 3 :(得分:2)
使用扩展名制作文件。reg
这是文件的注册表
Disable_Smooth_edges_of_screen_fonts
[HKEY_CURRENT_USER\Control Panel\Desktop]
"FontSmoothing"="0"
Enable_Smooth_edges_of_screen_fonts
[HKEY_CURRENT_USER\Control Panel\Desktop]
"FontSmoothing"="2"
你也可以用cmd做这个 这是命令的语法
REG ADD KeyName [/v ValueName | /ve] [/t Type] [/s Separator] [/d Data] [/f]
您必须注销才能使您改变效果
答案 4 :(得分:2)
如果没有重新启动,我不知道怎么做...
但我发现更改FontSmoothing键根本就不够......
有关如何完全删除ClearType和FontSmoothing的完整步骤,请查看以下内容:
Completley Disable Font Smoothing and ClearType in Windows 7
答案 5 :(得分:2)
以下适用于我: 控制面板>系统>高级系统设置>高级> (性能)设置>视觉效果>选择“自定义”并取消选中“平滑屏幕字体边缘”
答案 6 :(得分:1)
查看以下链接中描述的内容:
http://www.vbforums.com/showthread.php?t=491091
调用API可能会触发系统范围的更新,因此您无需注销/登录即可查看更改。
当然,这不仅限于vb.net。
答案 7 :(得分:0)