vote up 0 vote down star

I am now facing a problem with getting a string that fits the provided width in pixels.

For example, if I have a sentence like this (in JavaScript):

var mystring = "This is my sentence, I need to get just 50 pixels from it."

If I use the MeasureString method in C# I can get the width:

Font font = new Font("Segoe UI", 11, FontStyle.Regular, GraphicsUnit.Point);
SizeF size = graphics.MeasureString(mystring, font);

Let's say the width of this string is 400px but the max width I can display on the site is 50px.

If I shorten the string and measure it until it's less than 50px width it works, but it will require many iterations which is not a good solution at all.

Does anyone have a good solution for this?

Thanks.

flag

18% accept rate
4  
Where does JavaScript come into this? – Jon Skeet Jul 22 at 6:59
Most DrawText function of all frameworks have the ability to limit the text by rectangle, why not provide boundaries and let the system handle it? – Shay Erlichmen Jul 22 at 7:03
Where does JavaScript come into this? Because I can get the data from Ajax call, so this can also be cut via javascript if there is a good solution. – pang Jul 22 at 7:09
@Shay Erlichmen : I will check if there is a solution like this. – pang Jul 22 at 7:11
Do you control the web page markup? Are you bothered about where the text is truncated? If the answers are Yes and No respectively, then you could just clip the contents of the relevant display element to 50px and leave the text alone. – Christian Hayter Jul 22 at 7:36
show 1 more comment

3 Answers

vote up 1 vote down

I would like to add to this section - "If I shorten the string and measure it until it's less than 50px width ..."

Why don't you do a binary search starting from the middle of the string. Here's the location for starters. No matter how long the string is - it will take much lesser time to find out what's your ideal length. The complexity reduces to log(n) from n.

For better results, you can truncate your string if it's really long, like 500 characters, for example, before starting your binary search.

link|flag
vote up 0 vote down

Using a binary search for the optimal length it shouldn't take many iterations. Given the intricacies of text rendering, I believe that's the best you can do. You can't just take a width for each char and add them together.

link|flag
vote up 0 vote down

You can approximate the width of a string as being the sum of the width of sub-strings. If your substrings are bounded by whitespace† it may even be a pretty good approximation. But you can't know until you ask exactly how wide any particular string will be, because the text rendering engine does things like kerning (altering the spacing between characters).

† and you probably want them to be, at least in a European language, because it is much easier to read text broken only on whitespace than text broken mid-word, even if it results in the text looking slightly more ragged.

link|flag

Your Answer

Get an OpenID
or

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