I need to create bitmaps of characters depending on a specified font. When they specify a font, they are specifying:
- Font (e.g. Microsoft Sans Serif)
- Font style (e.g. Bold)
- Size (e.g. 14)
- Effects (e.g. Stikeout)
- Script (e.g. Western)
Knowing this, is it possible to determine the size that a character will be exactly if I know the character and all the information above? I have to draw them to bitmaps that are the same size as the character and no bigger.
Thanks! I'm doing this all in VB.net so all .net examples are acceptable.