Click here to Skip to main content
15,867,488 members
Articles / Programming Languages / C#
Article

Bypass Graphics.MeasureString limitations

Rate me:
Please Sign up or sign in to vote.
4.73/5 (45 votes)
22 Apr 2003LGPL31 min read 424.5K   89   69
This sample code computes the width of the string, as drawn by Graphics.DrawString

Sample Image - measurestring.gif

Introduction

Graphics.MeasureString can be used to compute the height and width of a text string. Often, however, the dimensions returned do not match the size of what gets drawn on screen when calling Graphics.DrawString. The red box above shows the dimensions returned by Graphics.MeasureString, which is about an em too wide...

The differences between what is computed and what is really drawn on the screen are related to how GDI+ computes its widths when using hinting and antialiasing. Here are the  gory details. A known work-around is to make GDI+ display its string antialiased, in which case the measured width matches the displayed result. If you want to draw standard strings (to match the GUI appearance, for instance), you are left out.

First, naive solution

The code I present here can be inserted into any class which needs to compute the real width of a string (shown by the yellow background above). The trick I use to compute the real string width is to ask GDI+ to draw the string into a bitmap and then find the position of the last character by reading back the pixels. A few optimisations ensure that this gets done as fast as possible (small bitmap, few pixels).

C#
static public int MeasureDisplayStringWidth(Graphics graphics, string text,
                                            Font font)
{
    const int width = 32;

    System.Drawing.Bitmap   bitmap = new System.Drawing.Bitmap (width, 1, <BR>                                                                graphics);
    System.Drawing.SizeF    size   = graphics.MeasureString (text, font);
    System.Drawing.Graphics anagra = System.Drawing.Graphics.FromImage(bitmap);

    int measured_width = (int) size.Width;

    if (anagra != null)
    {
        anagra.Clear (Color.White);
        anagra.DrawString (text+"|", font, Brushes.Black,
                           width - measured_width, -font.Height / 2);

        for (int i = width-1; i >= 0; i--)
        {
            measured_width--;
            if (bitmap.GetPixel (i, 0).R != 255)    // found a non-white pixel ?
                break;
        }
    }

    return measured_width;
}

That's all, folks. Right-to-left scripts won't probably work with this piece of code.

Another solution...

It is also possible to get the accurate string geometry by using MeasureCharacterRanges, which returns a region matching exactly the bounding box of the specified string. This is faster and more elegant than the first solution I posted on CodeProject.

C#
static public int MeasureDisplayStringWidth(Graphics graphics, string text,
                                            Font font)
{
    System.Drawing.StringFormat format  = new System.Drawing.StringFormat ();
    System.Drawing.RectangleF   rect    = new System.Drawing.RectangleF(0, 0,
                                                                  1000, 1000);
    System.Drawing.CharacterRange[] ranges  = <BR>                                       { new System.Drawing.CharacterRange(0, 
                                                               text.Length) };
    System.Drawing.Region[]         regions = new System.Drawing.Region[1];

    format.SetMeasurableCharacterRanges (ranges);

    regions = graphics.MeasureCharacterRanges (text, font, rect, format);
    rect    = regions[0].GetBounds (graphics);

    return (int)(rect.Right + 1.0f);
}

Post Script

Both functions only work with non-empty strings. The second solution will strip the trailing spaces; the first solution will take them in account. Choose the one which best fits your needs

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Web Developer
Switzerland Switzerland

Pierre Arnaud got a Ph.D. in computer science at the Swiss Federal Institute of Technology; he currently works both as an independent contractor on hardware and software projects at OPaC bright ideas and as a senior software designer at EPSITEC.


Pierre was a key contributor to the Smaky computer, a real time, multitasking system based on the Motorola 680x0 processor family.


Now, Pierre works on his spare time for the Creative Docs .NET project: it is a vector based drawing and page layout software based on .NET and AGG.


Comments and Discussions

 
SuggestionShorter method Pin
Member 1019106015-Apr-14 7:10
Member 1019106015-Apr-14 7:10 
Answeryet another solution: TextRenderer.DrawText instead of Graphics.DrawString Pin
Member 850679424-Oct-13 19:24
Member 850679424-Oct-13 19:24 
QuestionTextRenderer.MeasureText Pin
Senser2216-Aug-13 1:38
Senser2216-Aug-13 1:38 
GeneralMy vote of 5 Pin
GrahamButcher28-Aug-12 5:23
GrahamButcher28-Aug-12 5:23 
GeneralMy vote of 5 Pin
Sweegle21-Jul-12 9:12
Sweegle21-Jul-12 9:12 
GeneralThanks! Pin
Alexandru Pupsa10-Jul-12 21:35
Alexandru Pupsa10-Jul-12 21:35 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey18-Feb-12 3:28
professionalManoj Kumar Choubey18-Feb-12 3:28 
QuestionDoes it measure only width? Pin
Tushar Trivedi16-Mar-10 20:09
Tushar Trivedi16-Mar-10 20:09 
AnswerRe: Does it measure only width? Pin
Pierre Arnaud16-Mar-10 20:22
Pierre Arnaud16-Mar-10 20:22 
GeneralHey, this article has been pointed to by Patrick Smacchia (MVP C#, NDepend author) Pin
Pierre Arnaud23-Sep-09 8:36
Pierre Arnaud23-Sep-09 8:36 
QuestionCalculating height? Pin
fuzzek2-Sep-08 23:32
fuzzek2-Sep-08 23:32 
AnswerRe: Calculating height? Pin
Pierre Arnaud3-Sep-08 1:17
Pierre Arnaud3-Sep-08 1:17 
GeneralRe: Calculating height? Pin
Roland Li15-Sep-09 23:29
Roland Li15-Sep-09 23:29 
GeneralGraphics Argument Pin
cmschick15-Nov-07 7:58
cmschick15-Nov-07 7:58 
Questionrichtextbox with the capability of inserting a table Pin
mahfuzdinish24-Jul-07 21:15
mahfuzdinish24-Jul-07 21:15 
Generalthanks Pin
wuzhiqiang7-Nov-06 18:10
wuzhiqiang7-Nov-06 18:10 
GeneralFound great MSDN Article where such problem is solved... Pin
Norman-Timo3-Nov-06 5:42
Norman-Timo3-Nov-06 5:42 
GeneralRe: Found great MSDN Article where such problem is solved... Pin
LegoMindstorms10-Oct-07 7:09
LegoMindstorms10-Oct-07 7:09 
GeneralUsing GDI use DrawText with DT_CALCRECT Pin
gerard carbo18-Oct-06 0:32
gerard carbo18-Oct-06 0:32 
GeneralMy way to elimonate extra width Pin
SamNaseri23-Sep-06 22:55
SamNaseri23-Sep-06 22:55 
GeneralRe: My way to elimonate extra width Pin
Martin Yle2-Dec-06 15:07
Martin Yle2-Dec-06 15:07 
GeneralRe: My way to elimonate extra width Pin
flend3-May-08 8:32
flend3-May-08 8:32 
GeneralRe: My way to elimonate extra width Pin
andre_dart4-May-09 6:57
andre_dart4-May-09 6:57 
GeneralRe: My way to elimonate extra width Pin
jeffcohen1235-May-10 2:18
jeffcohen1235-May-10 2:18 
GeneralProblem with FontStyle.Bold Pin
Christian Wikander14-Sep-06 23:08
Christian Wikander14-Sep-06 23:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.