1. 程式人生 > 實用技巧 >windows10系統下PS、AI等軟體介面字很小如何解決

windows10系統下PS、AI等軟體介面字很小如何解決

轉自:http://www.xitongcheng.com/jiaocheng/win10_article_24051.html

AI CS6是一款功能十分強大的圖形設計軟體,因此深受很多使用者的喜愛。不過,最近一些朋友在win10系統中安裝好AI CS6後,發現軟體介面字型非常小看著很不舒服,

這該怎麼辦呢?下面,小編就給大家分享一個方法,來解決高分屏筆記本軟體介面字太小問題,可用於PS、AI等軟體,親測有效!

推薦:windows10系統下載64位(http://www.xitongcheng.com/win10/64/)

具體如下:

1、按windows+R鍵或找到執行,輸入 regedit,單擊確定;

2、依次找到 HKEY_LOCAL_MACHINE > SOFTWARE > Microsoft > Windows > CurrentVersion >SideBySide,右鍵單擊 新建>DWORD(32位)值,命名為 PreferExternalManifest,無論是64位還是32位的,都是新建DWORD(32位);

3、雙擊剛剛新建的檔案,將數值資料改成1,並選擇右側的十進位制,單擊確定;

4、新建一個txt檔案,複製如下程式碼到檔案中,儲存,以需要更改字型的軟體命名,並將字尾名改為.manifest;例如,photoshop.exe.manifest;fireworks.exe.manifest;illustrator.exe.manifest;dreamweaver.exe.manifest

程式碼連結網址:http://www.danantonielli.com/wp-content/uploads/2014/03/manifest.txt

注意:針對不同的軟體,只要更改檔名即可,不需要改程式碼;

5、最後一步,找到軟體的安裝目錄,此資料夾中一定包含軟體的應用程式,即.exe檔案,將建立的.manifest檔案複製到其中,如圖,比如我裝的是AI,則找到illustrator.exe所在的資料夾,將新建的illustrator.exe.manifest檔案複製到改資料夾中;

6、結果,原先我的AI介面是這個樣子,簡直要看瞎了;

7、改完之後就變成這樣啦,會根據系統的縮放比例來顯示,過程稍稍需要些耐心,不過改完後再也不用每次帶著放大鏡了。

想要解決windows10系統下PS、AI等軟體介面字很小問題的朋友們,不妨試試上述小編介紹的方法。這個方法非常簡單,相信大家只要操作一遍,就能很快學會!

相關教程:ps怎麼開啟ai圖層http://www.xitongcheng.com/jiaocheng/azoiyfj.html

<?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>