Skip to content

Instantly share code, notes, and snippets.

@sAbakumoff
Created April 29, 2013 03:23
Show Gist options
  • Save sAbakumoff/5479541 to your computer and use it in GitHub Desktop.
Save sAbakumoff/5479541 to your computer and use it in GitHub Desktop.
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