http://qs321.pair.com?node_id=950764


in reply to Re: font measurement
in thread font measurement

A ttf, or otf. Really I just want to specify a font on my Windows system. The actual code I will use is much more complex, but seeing I can't even get the basic idea of measuring the string, I figured it would be better to make a simple program to test it first.

Replies are listed 'Best First'.
Re^3: font measurement
by afoken (Chancellor) on Jan 30, 2012 at 13:31 UTC

    Windows has some API functions that can be fed with a string and a font, returning some sizes. Start looking at Font and Text Functions.

    Alexander

    --
    Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)
Re^3: font measurement
by fisher (Priest) on Jan 30, 2012 at 13:39 UTC
    AFAIK the Font::Freetype suite can render you at least one given symbol. Assuming that spacing between characters will be constant, you can calculate the size of any string, using these data.

    But there is also Font::TTF, which I didn't used before - start reading from this point, I guess.