Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Aero: How to draw ClearType text on glass?

Using GDI+ to draw text on glass:

graphics.DrawString(s, Length(s), font, MakePointF(x, y), brush);

You'll notice that the ClearType enabled text draws very poorly on glass:

alt text

But with glass disabled the text, of course, draw fine:

alt text

By way of comparison here is Anti-alias font smoothing:

alt text

And here is no font smoothing:

alt text

Note: No font smoothing looks better than it really does because StackOverflow resizes the images on your monitor.

How do i draw ClearType text on glass?

Notes

  • Win32 native
  • not .NET (i.e. native)
  • not Winforms (i.e. native)
  • GDI+ (i.e. native)

What Mark is suggesting is that you cannot honor the user's preferences for text rendering (i.e. "SystemDefault". ClearType does not function on glass, and you cannot use it.

In other words, if you're rendering on glass you must override the text rendering with:

graphics.SetTextRenderingHint(TextRenderingHintAntiAliasGridFit);

Otherwise you should leave the TextRenderingHint at it's default TextRenderingHintSystemDefault.

See also

  • Aero: How to draw solid colors on glass?
  • Windows Aero: What color to paint to make “glass” appear?
  • WPF: Extending glass into client area disables ClearType entirely
like image 740
Ian Boyd Avatar asked Nov 23 '10 16:11

Ian Boyd


1 Answers

The problem is inherent to the way drawing is performed. All of your text is being drawn on a black background, then composited onto a glass background; the semi-transparent font smoothing is being combined with black to make near-black.

like image 86
Mark Ransom Avatar answered Sep 21 '22 04:09

Mark Ransom