.NET中的动画效果?
有人可以给我指一个带有简单图像动画的 C# 开源实现吗?
例如,我将输入图像提供给动画师,动画代码会生成几十个图像,如果按顺序显示,这些图像看起来就像动画。
我并不是什么特别花哨的东西——像动画这样的简单 DirectX 过滤器就可以了。
Can someone point me to a C# open source implementaion with a simple image animations.
e.g. I feed the input image to animator, and the animation code produces a few dozen of images which if displayed sequentially looks like animation.
I am not something extremely fancy - a simple DirectX filter like animations would do.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么你会寻找精灵吗? Microsoft 有相关教程,包括:
http ://msevents.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-US&EventID=1032273446&CountryCode=US
以及 C# 中的一般图形:
http://www.microsoft.com/events/series/msdnvisualcsharp.aspx?tab=webcasts
You would be look for a sprite then? Microsoft has tutorials on this including:
http://msevents.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-US&EventID=1032273446&CountryCode=US
and general graphics in C# here:
http://www.microsoft.com/events/series/msdnvisualcsharp.aspx?tab=webcasts
嗯...我不确定这是否是您想要的,但我创建了一个名为 Transitions 的库,它可以让您轻松地为 UI 控件的大多数属性设置动画。 您可以使用它来移动图片的位置、图片之间的过渡或放大和缩小图片。 但我不确定这是否正是您所追求的效果? 无论如何,如果有任何帮助,我的图书馆就在这里:
http://code.google.com/p/dot-net-transitions/< /a>
Hmmm... I'm not sure if this is what you want, but I've have created a library called Transitions that lets you animate most properties of UI controls easily. You could use it to move the position of pictures, transition between pictures or grow and shrink pictures. But I'm not sure that this is exactly the effects you're after? Anyway, if it's any help, my library is here:
http://code.google.com/p/dot-net-transitions/