• 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.

  • 相关阅读:
    hdu6761 Mininum Index // lyndon分解 + duval贪心 + 秦九韶算法
    hdu6762 Mow // 半平面交 模拟 双端队列
    数据库增删改查操作
    移动端自动化概念
    范围查询和模糊查询
    软件测试技能要求总结
    继承
    luogu_P2024 [NOI2001]食物链
    luogu_P4092 [HEOI2016/TJOI2016]树
    luogu_P2887 [USACO07NOV]防晒霜Sunscreen
  • 原文地址:https://www.cnblogs.com/arxive/p/10057138.html
Copyright © 2020-2023  润新知