SDL + SDL_TTF:如何在 SDL+SDL_TTF 中呈现文本? (C++)
我在尝试使用 TTF 将 SDL 中的文本渲染到 SDL 窗口时遇到了很多麻烦。我对 C++ 有点陌生,希望以一种“新手”的方式来解释这一点。 (如果可能的话,有一些示例代码吗?)
谢谢!
I've been having a lot of trouble trying to render text in SDL with TTF to an SDL window. I'm a little new to C++ and would like this explained in a bit of a 'newbie' way. (with some example code, if possible?)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个简单的例子。确保您的目录中有 arial.ttf 或您选择的 truetype 字体。您需要使用 -lSDL -lSDL_ttf 进行链接。
Here is a simple example. Make sure that you have arial.ttf, or your truetype font of choice in your directory. You will need to link with -lSDL -lSDL_ttf.