LPD3DXFONT 使用 DT_CALCRECT 绘制文本?

发布于 2024-08-09 10:54:07 字数 126 浏览 5 评论 0原文

如何使用 DT_CALCRECT 确定矩形底部和右侧坐标? 例如我有这个矩形: RECT 文本位置; textPos.left = 100; textPos.right = 100;

接下来我该做什么来计算矩形并绘制文本?

How do I use DT_CALCRECT to determine my rectangle bottom and right coords?
e.g I have this rect:
RECT textPos;
textPos.left = 100;
textPos.right = 100;

What do I do next to calculate the rect and draw the text?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剩余の解释 2024-08-16 10:54:07

嗯,您只需使用 DT_CALCRECT 参数集和指向原始矩形的指针来调用 DrawText 即可。它将修改矩形,扩展底部和右侧的值。然后,使用更新后的矩形和所需的任何 DT_ 参数再次调用 DrawText。

http://msdn.microsoft.com/en-us/library/ms901121。 ASPX

Mmm you just make a call to DrawText with the DT_CALCRECT parameter set, and the pointer to your original rectangle. It will modify the rectangle, extending the bottom and right values. Then you make another call to DrawText with your updated rectangle and whatever DT_ parameter needed.

http://msdn.microsoft.com/en-us/library/ms901121.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文