zoukankan      html  css  js  c++  java
  • 解决photoshop illustrator CS6在高分屏下图标文字过小的情况

    参考的一位国外的大神的经验。

    1、开始-运行-regedit 打开注册表编辑器;在地址栏输入“计算机HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionSideBySide”,回车展开;右侧空白处右键点击新建-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)时,标题栏字体会变大。

  • 相关阅读:
    015.Python函数名的使用以及函数变量的操作
    014.Python函数
    013.Python的文件操作
    012.Python的字典和集合的相关函数
    git入门
    Visual Studio 常见的快捷键
    SVN使用
    C++ 一些特性
    C++ 引用、构造函数、移动语义
    WPF的AutoCompleteBox控件
  • 原文地址:https://www.cnblogs.com/wq242424/p/11019248.html
Copyright © 2011-2022 走看看