I'm able to load in a Windows font into my Max app, but the resulting text doesn't appear the same as it would in a windows menu - the kerning is wrong and the font image is slightly different
For instance -
Run this and compare it to the the Max menu and there are lots of differences. It doesn't matter what graphics driver is set or if you use SMOOTHFONT etc. it always appears differently.
Without using bitmpas, is there a way of making the text look more like the Windows version? This is just something that came up and although unimportant in the grand scheme of things, it interested me.
For instance -
Graphics 800,600,0,60 Global font=LoadImageFont("C:/windows/fonts/tahoma.ttf",11) SetImageFont font While Not KeyHit(KEY_ESCAPE) SetColor 236,233,216 DrawRect 0,0,800,19 SetColor 255,255,255 DrawLine 0,19,800,19 SetColor 172,168,153 DrawLine 0,20,800,20 SetColor 0,0,0 DrawText "File Edit Program Help",6,2 Flip Cls Wend End
Run this and compare it to the the Max menu and there are lots of differences. It doesn't matter what graphics driver is set or if you use SMOOTHFONT etc. it always appears differently.
Without using bitmpas, is there a way of making the text look more like the Windows version? This is just something that came up and although unimportant in the grand scheme of things, it interested me.