I feel like I've read a question similar to this but I can't find it, so please close if duplicate.

I am trying to draw text with Graphics::DrawString with a monospace font (Consolas). However, when I draw the text, the letters are not evenly spaced. Here's what it looks like:

enter image description here

As you can see, the letters are clustered into groups of two and three. I read this article and I thought I had taken adequate steps to avoid it by using StringFormat::GenericTypographic, but apparently not. I am also using TextRenderingHintClearTypeGridFit because all the others look like junk (and there's no TextRenderingHintClearType without the GridFit part).

How can I draw text like all the other programs that draw text with a monospace font so that it looks right?

link|improve this question

This is a known problem with Graphics.DrawString(). That's why the TextRenderer class became available in .NET 2.0, it doesn't have this problem. – Hans Passant Feb 17 at 1:09
@HansPassant I'm not using .NET – Seth Carnegie Feb 17 at 1:10
2  
Well, use DrawTextEx() then, same thing. – Hans Passant Feb 17 at 1:12
@HansPassant that's part of GDI, no? Does it do antialiasing, cleartype, and all that? – Seth Carnegie Feb 17 at 1:14
1  
Whatever is selected as the operating system default. Yes. – Hans Passant Feb 17 at 1:23
show 6 more comments
feedback

1 Answer

up vote 3 down vote accepted

The issue is that GDI+ uses a different (and long since abandoned) system for drawing text. Starting with .NET framework 2.0, Microsoft changed all the controls to actually use GDI for text rendering, rather than GDI+. Text rendering in GDI is hardware accelerated, and continued to get improvements with character rendering, Uniscribe, ligatures. Text rendering in GDI+ is not hardware accelerated, and not getting any fixes or improvements.

GDI can also draw anti-aliased, use CLEARTYPE_QUALITY or ANTIALIASED_QUALITY.

Here's a comparison of

  • GDI+ (Graphics.DrawString)
  • GDI (TextRenderer.DrawText)

enter image description here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.