OpenTK文字动画
有谁知道如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文本渲染有多种可能的方法。最简单的一种:使用 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.