Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Lets say I've a string and some font (name, size, etc...).
How to get width and height, measured in pixels, of such string displayed on the screen?

share|improve this question

2 Answers

up vote 3 down vote accepted

The easy answer is Graphics.MeasureString. But it's rather infamous for not being particularly accurate. If you need better accuracy you can check out this article: Using MeasureCharacterRanges to Draw Text.

share|improve this answer
eg. sucks with multiline – WooYek Mar 20 '10 at 14:56

You didn't specify if you were using WinForms or ASP.NET.

If this is a web site, the answer I gave on this question can be easily distilled to a working solution for your question:

http://stackoverflow.com/questions/2118720/third-font-in-font-family-is-significantly-larger/2119438#2119438

share|improve this answer
I'm using WinForms, but Your answer might be helpful in the future, so thanks anyway. – Tomek Tarczynski Mar 20 '10 at 15:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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