Created
April 29, 2013 03:23
-
-
Save sAbakumoff/5479541 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private SizeF MeasureText(string text, Font font) | |
{ | |
using(var bitmap = new Bitmap(1,1)) | |
using(var graphics = Graphics.FromImage(bitmap)) | |
{ | |
var size = graphics.MeasureString(text, font); | |
return new SizeF(size.Width / bitmap.HorizontalResolution, size.Height / bitmap.VerticalResolution); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment