作者:veandc
项目:go-sdl
// Height (https://www.libsdl.org/projects/SDL_ttf/docs/SDL_ttf_29.html#SEC29)
func (f *Font) Height() int { return int(C.TTF_FontHeight(f.f)) }
作者:henkma
项目:Go2
func (f *Font) GetHeight() int {
return int(C.TTF_FontHeight(f.Get()))
}
作者:beora
项目:fung
// Get the total height of the font - usually equal to point size
func TTFFontHeight(font *C.TTF_Font) int {
return int(C.TTF_FontHeight(font))
}
作者:Zwobo
项目:Go-SD
// Returns the maximum height of all the glyphs of the font.
func (f *Font) Height() int {
f.mutex.RLock()
result := int(C.TTF_FontHeight(f.cfont))
f.mutex.RUnlock()
return result
}
作者:kri
项目:Go-SDL
// Returns the maximum height of all the glyphs of the font.
func (f *Font) Height() int {
result := int(C.TTF_FontHeight(f.cfont))
return result
}