gpt4 book ai didi

python - 使用OpenGL位图字体时是否可以获取字符的宽度?

转载 作者:太空宇宙 更新时间:2023-11-03 19:38:02 25 4
gpt4 key购买 nike

我正在尝试在 OpenGL 应用程序中对齐位图字体文本,但找不到任何有关获取每个字符宽度的信息。这是我的 renderText 函数:

def renderText( self, text, fontFace, position ):
..... (omitted code to make post shorter)
glRasterPos2i( position[0], self.windowSize[1] - position[1] )
glPushAttrib( GL_LIST_BIT )
glListBase( self.fonts[ fontFace ] - 32 )
glCallLists( text )
glPopAttrib()
......

我创建位图字体并使用 glGenList 来存储它。

    self.fonts[ fontFace ] = glGenLists( 96 )
font = win32ui.CreateFont( fontProperties )
font = hDisplayContext.SelectObject( font )
wglUseFontBitmaps( displayContext, 32, 96, self.fonts[ fontFace ] )

有人知道是否可以获得字符宽度甚至最终渲染文本的总宽度吗?

最佳答案

glutBitmapWidthglutBitmapLength — 返回位图字符/字符串的宽度/长度。

Python 规范:

glutBitmapWidth(font, character) -> None
glutBitmapLength(font, string) -> None

关于python - 使用OpenGL位图字体时是否可以获取字符的宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2386849/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com