Windows – Avoid Blurry texts when having 150% of normal DPI (windows 8.1)

dpigoogle-chromeoperascalingwindows 8.1

(yes, it is a common problem but the found solutions are not acceptable for me)

I am using one screen 1920 x 1080 and 125% of normal DPI is even little for me and prefer to have 150% on windows 8.1.

When DPI = 150% texts in opera and chrome are blurry but not in Firefox
http://imageshack.com/a/img545/3117/5jyw.png

When DPI = 125% (default) text is cristal clear just they are small
http://imageshack.com/a/img812/5769/p8r7.png

I have tried solutions that allegedly solved my problem:

  • a) turning on Let me choose one scaling level for all my displays – no effect on text sharpness (see the first image)
  • b) Program's context menu > Compatibility tab > check Disable display scaling on High DPI settings – the program ignores 150% scaling and shows like on 125% scaling. This means Text size is small:

enter image description here

Note that even device manager (native Windows program) is blurry on 150% DPI.

enter image description here

So, I am searching for a method to get clear and big size text in all programs (e.g. opera, chrome) on windows 8.1

Best Answer

Chrome has been lacking support for DirectWrite to render fonts on Windows. The issue you are describing is what happens not only on high DPI settings but also on normal (100%) settings.

There is a long and old thread on the Chromium issues website: https://code.google.com/p/chromium/issues/detail?id=25541

The developers said they already enable it on Chrome Canary builds but there is no timetable on when the regular version of Chrome will support it.

You can enable DirectWrite launching the latest Chrome Canary build with the following parameters:

# To enable DirectWrite:
--enable-direct-write --no-sandbox

# To enable DirectWrite and sub-pixel font scaling:
--enable-direct-write --no-sandbox --enable-experimental-web-platform-features 

The above parameters were listed by one of the developers in the same thread. The post link is https://code.google.com/p/chromium/issues/detail?id=25541#c61

Be warned the by disabling the sandbox feature you are compromising one of Chrome's security features.

Opera, which uses Webkit, has the same problem as Chrome.