参考的一位国外的大神的经验。
1、开始-运行-regedit 打开注册表编辑器;在地址栏输入“计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide”,回车展开;右侧空白处右键点击新建-DWORD(32位)值;键名重命名为PreferExternalManifest;右键点击此键,设置键值为1(10进制)。
2、在Photoshop(illustrator )的安装目录下新建名为Photoshop.exe.manifest(Illustrator.exe.manifest)的文件,注意该文件与photoshop.exe(illustrator.exe)位于同一目录,文件内容如下:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0" processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*">
</assemblyIdentity>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.VC90.CRT"
version="9.0.21022.8"
processorArchitecture="amd64"
publicKeyToken="1fc8b3b9a1e18e3b">
</assemblyIdentity>
</dependentAssembly>
</dependency>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel
level="asInvoker"
uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
<asmv3:application>
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
<ms_windowsSettings:dpiAware xmlns:ms_windowsSettings="http://schemas.microsoft.com/SMI/2005/WindowsSettings">false</ms_windowsSettings:dpiAware>
</asmv3:windowsSettings>
</asmv3:application>
</assembly>
PS和AI的文件内容一样。
或者可以直接下载此文件,解压放到PS(AI)安装目录路径即可。
再次运行Photoshop(Illustrator)时,标题栏字体会变大。
来源:oschina
链接:https://my.oschina.net/u/4396523/blog/3501478