如何找到字体的宽度?
我使用 directx 来绘制字符串,directx 使用 GDI 来绘制字符串..
我正在使用 DrawText
来绘制字符串。我需要一种方法来找到字符串的宽度。
有什么想法吗?
I'm using directx to draw my string, directx uses GDI to draw the string..
I'm using DrawText
to draw my string. I need a way to find the width of the string.
Any idea ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是说这个DrawText?如果是这样,它有一个 DT_CALCRECT 标志,允许您计算要绘制的文本的大小。
You mean this DrawText? If so, it has a
DT_CALCRECT
flag that allows you to calculate the size of the text to draw.DrawText 可以帮你计算。请参阅 DT_CALCRECT 标志:
http://msdn。 microsoft.com/en-us/library/dd162498%28v=vs.85%29.aspx
DrawText can calculate it for you. See the DT_CALCRECT flag:
http://msdn.microsoft.com/en-us/library/dd162498%28v=vs.85%29.aspx