OpenTK文字动画

发布于 2024-10-11 21:13:21 字数 87 浏览 8 评论 0原文

有谁知道如何使用 OpenTK 框架滚动(动画)2D 文本,或者在哪里可以找到一些好的例子。我需要新闻电视频道上的底部(顶部)滚动行情。

谢谢。

Does anybody know how to do, or where to find some good examples, for scrolling (animating) 2D text using OpenTK framework. I need something like bottom (top) scrolling tickers on news TV channels.

Thanks.

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

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

发布评论

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

评论(1

提赋 2024-10-18 21:13:21

文本渲染有多种可能的方法。最简单的一种:使用 System.Drawing 将文本渲染为 System.Drawing.Bitmap。然后,将此位图加载到 OpenGL 纹理中并将其喷到四边形上进行渲染。通过移动此四边形来对文本进行动画处理,并在文本发生变化时更新位图/纹理。

编辑:我已经为 OpenTK 编写了一个文本渲染示例,您可以在这里找到: http://opentk.svn.sourceforge.net/viewvc/opentk/trunk/Source/Examples/OpenGL/1.x/TextRendering.cs ?revision=3063&view=markup

将 TextRenderer 类复制到您自己的项目中,然后就可以开始了。检查示例以获取使用说明。

There are many possible approaches to text rendering. The simplest one: use System.Drawing to render your text into a System.Drawing.Bitmap. Afterwards, load this Bitmap into an OpenGL texture and splat it onto a quad for rendering. Animate the text by moving this quad and update the Bitmap/texture whenever the text changes.

Edit: I have written a text rendering example for OpenTK, which you can find here: http://opentk.svn.sourceforge.net/viewvc/opentk/trunk/Source/Examples/OpenGL/1.x/TextRendering.cs?revision=3063&view=markup

Copy the TextRenderer class to your own project and you are good to go. Check the example for usage instructions.

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