PhotoShop CS6 在2K屏幕下标题菜单等字体太小

对于此类问题,我更喜欢直接了当,不作解释,解决方法如下(大面积参考互联网内容):

(1)Win+R按键打开运行对话框, 输入regedit,打开注册表。

(2)展开HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersion,并单击SideBySide。在右栏内新建DW开头的文件,该文件名为PreferExternalManifest,键值为1(10进制)。

(3)创建资源设置文件photoshop.exe.manifest,并放置在PS的根目录下(PhotoShop.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>
View Code

将以上文字复制并保存在一个新建的记事本中,记事本命名为 photoshop.exe.manifest(注意后缀是.manifest)

参考文章

Photoshop CS5和CS6界面字体和图表太小修改办法james_tyg,201701.

原文地址:https://www.cnblogs.com/arxive/p/10057138.html