Terrible font rendering in some applications but not others

24

12

I'm not sure what's changed, but all Windows updates are done, and all browsers are fully up to date. Chrome 40, Firefox 35, Opera 27.

This is what my fonts look like at the moment:

blurry fonts image

I have ClearType turned on, and if I open up Word and write some large type in the same font faces everything looks fine.

I tried changing the website I'm working on to Calibri, and that was still blocky and horrible even though it's a local font that I definitely have, and which Word displays correctly.

I've tried turning it off and on again. This is a recent problem (i.e., something has changed, it is not a problem associated with an initial installation).

Codemonkey

Posted 2015-02-11T12:44:55.827

Reputation: 321

99% of those with font rendering problems all over their Windows O/S (like word in this case) only post about the appearance in their browser. It's now almost impossible to google for font rendering and find any page that doesn't revolve around browser font rendering technologies :( – ndemou – 2015-02-24T11:43:18.297

My initial posting did outline that fonts still looked fine in Word (for one) in the title of the question, but someone edited it to make it more generic. As a web dev though, yes, it was browsers that I mostly noticed the problem in. – Codemonkey – 2015-02-24T12:15:03.330

1Sorry for the bitter comment Codemonkey. I came here after googling with poor results for maybe half an hour and was in a bad mood. BTW if the same fonts/sizes that appear ugly in a browser appear OK in Word then the accepted answer is not for you because it's about a system-wide font rendering bug which should affect all programs. It's easy to get confused with so many "moving parts" that play a part in this problem though. I surely did. – ndemou – 2015-02-25T07:45:16.227

This was 100.0% the problem with my system @ndemou. It wasn't system wide, but it was unquestionably KB3013455 that was the issue. Uninstalled it and the problem went away. Reinstalled it and it came back, applied MS hotfix for it and it went away. I didn't try Arial/Courier/Times in Word though, it was Montserrat and Calibri which maybe weren't affected. The hotfix definitely fixed my browsers etc though. – Codemonkey – 2015-02-25T10:40:46.317

1I'm running into this issue in WIndows 10; the KB3013455 issue didn't fix it. – Turtles Are Cute – 2015-10-06T21:31:46.617

Answers

23

Let's try to build an answer with the full information here...

This is a known issue with Microsoft Update KB3013455, released on the 10th February 2015.

For a quick way to check if you have the update installed, open a DOS command prompt and type:

wmic qfe list brief /format:texttablewsys | find "KB3013455"

If this returns no text at all, the update is not installed; if it is installed, you'll see KB3013455 and more text printed out.

The issue can be resolved by either

  1. uninstalling the update (but this will leave you with a security vulnerability). A reboot will be required.

  2. Installing a subsequent update (the Microsoft official fix, released on the 18th Feb 2015):

    To resolve this issue, install update 3037639. For more information, click the following article number to view the article in the Microsoft Knowledge Base:

    3037639 Fix for text quality degradation after security update 3013455 (MS15-010) is installed.

    This fix will take you to a page where it seems you're downloading the original KB3013455 all over again. Keep going, when you actually click to download you will get an option to get the fix, KB3037639.

    A reboot will be required.

    The fix was later included in Microsoft's automatic updates in March 2015.

Edit the list below to add affected systems:

  • Windows Vista SP2
  • Windows Server 2003 SP2
  • Windows Server 2008 SP2
  • Windows XP (for people on the Custom Support Program that keep receiving patches for XP)
  • Windows FLP
  • Windows Embedded (WEPOS, POS Ready 2009)

Edit the list below to add affected Fonts (only some font sizes show problems):

  • Arial
  • Courier New
  • Times New Roman
  • many others

Description of the problem (from here):

Essentially the small fonts (8-20pt) that normally result in a one-pixel line (think of lowercase "b" or "t" or "d") would now be a random mess between 1 and 2 pixels. Turning on "Clear Type" or font smoothing does "smooth" the garbage and it doesn't look as awful but that doesn't make the text any more readable.

pgr

Posted 2015-02-11T12:44:55.827

Reputation: 861

1Notice that I edited the answer to include the official fix from Microsoft, which is a new update. – pgr – 2015-02-20T12:03:22.227

After this fix my fonts are still a bit ugly (see https://dl.dropboxusercontent.com/u/242368/fonts.png) but not as ugly as after the patch that originally broke stuff (see http://i.stack.imgur.com/tVFUz.png where you can also see good-looking fonts before any of the patches). What's your results?

– ndemou – 2015-02-24T11:34:10.447

I don't have such a good eye for Fonts, but I would say that for me the problem looks 100% solved. I can't see anything strange with my fonts after the fix... maybe you could check the other settings (Cleartype etc.) that you might have played with during the problem. – pgr – 2015-02-24T13:16:51.710

Thanks @pgr - if your schedule permits please share a screenshot of this rtf [https://dl.dropboxusercontent.com/u/242368/test.rtf] at 100% zoom. I haven't tweaked any other setting. Only thing that find worthy noting is that I only look at the screen of the affected servers remotely (RDP). – ndemou – 2015-02-25T07:57:33.553

Here you go: https://dl.dropboxusercontent.com/u/8232796/font_test.jpg Tell me if you see problems there.

– pgr – 2015-02-25T12:50:13.570

The patch fixed the issue for me, but the cmd prompt command only gives an error, it does not spit out the update itself, for me. Did I need to be logged in as admin/run an elevated cmd prompt or something? – Ben – 2015-03-11T04:11:46.877

@Ben What is your OS? What error does it give? Can you please try it an elevated prompt to see if it works? Thanks! – pgr – 2015-03-11T09:34:18.877

4

You can try this in Firefox and see if it helps...

Inside about:config, the gfx.font_rendering.cleartype_params.rendering_mode definitely changes the way the fonts are rendered on Firefox under Windows OS. You can make the changes and see live what the differences are. What you are going to want to do is actually search for this value and make sure it is the only one visible in your about:config window. The reason for this is below.


The options are as follows:

A word of caution. When making changes to this value on my system, choosing 1 completely removes all text rendered in the browser. This means all your tabs, interface, webpage and about:config text might become completely invisible. If this happens, don't freak out, just double click on the bar where the value should be and change it back to 0 or -1. This is why you want to do a search for the actual value first, so that there is only one entry visible and you can change it back if something goes wrong. Trust me, I learned the hard way.

Source: BugZilla

Ce.

Posted 2015-02-11T12:44:55.827

Reputation: 61

Thank you so very much. It occurred for me on FFv44.0.1 and the value of 2 worked for me. – Gaurav Kumar – 2016-02-11T17:11:39.880

"definitely changes the way the fonts are rendered on Windows OS": Does that mean that by changing that about:config option, it will change the rendering of fonts for one or more non-Firefox applications running on the Windows OS? I would hope not; I would hope instead that this affects only Firefox. – bgoodr – 2016-10-15T16:57:56.080

No it just meant Firefox for Windows OS. Sorry for the confusion. Updated answer to reflect. – Ce. – 2016-11-05T03:14:58.833

4

Check the following link to fix it:

https://productforums.google.com/forum/#!topic/gmail/U10waTf6ogI

Author: vince31
go to start --> control panel --> security --> view installed updates search for or find KB3013455 installed on 2/11/15 highlight it, right click and select uninstall.

Your PC will need to restart and windows will configure the changes but all should be back to normal after that

Manuel Moita

Posted 2015-02-11T12:44:55.827

Reputation: 49

3

While this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.

– Cfinley – 2015-02-11T15:59:48.340

3@Codemonkey Cfinley is right in his comment as it is better to include the content of the link (or at least relevant parts of it) so the answer stays valid even if there is a problem with the link in the future. – laurent – 2015-02-11T17:41:28.477

This is irritating. I'm experiencing the same issue. Uninstalling the hotfix requires a reboot--which reinstalls the update. It's not listed in Automatic Updates so you can't add the update to the ignore list. – Nilpo – 2015-02-13T21:18:55.410

6I am surprised nobody is worried about security. The flaw fixed by this update apparently allows any website to execute code on your machine just by embedding crafted TrueType font. – Robert Važan – 2015-02-15T08:49:46.177

Do note, if you uninstall the update and nothing more, a next windows update will install the update again. Microsoft hasn't yet retracted the update. I uninstalled the update on a server of ours, rebooted it, and next day it was installed again. – LPChip – 2015-02-17T08:41:02.170

new hotfix available to fix the font issue: support.microsoft.com/kb/3037639 – scytale – 2015-02-19T18:34:54.093