gpt4 book ai didi

c# - 在 C# Windows 应用程序中为图像设置动画的最简单方法

转载 作者:可可西里 更新时间:2023-11-01 11:20:30 24 4
gpt4 key购买 nike

我有一个 Windows 应用程序,它在发布到 Web 服务器之前预览图像列表,但不使用 WPF 我需要在用户按下下一个或上一个时在图片之间设置动画(滑动或淡入淡出或翻转)

谢谢哈姆扎

最佳答案

您可以使用 ImageAnimator 类为图像设置动画

示例:

using System;
using System.Drawing;

using System.Windows.Forms;

public class animateImage : Form
{

//Create a Bitmpap Object.
Bitmap animatedImage = new Bitmap("SampleAnimation.gif");
bool currentlyAnimating = false;

//This method begins the animation.
public void AnimateImage()
{
if (!currentlyAnimating)
{

//Begin the animation only once.
ImageAnimator.Animate(animatedImage, new EventHandler(this.OnFrameChanged));
currentlyAnimating = true;
}
}

private void OnFrameChanged(object o, EventArgs e)
{

//Force a call to the Paint event handler.
this.Invalidate();
}

protected override void OnPaint(PaintEventArgs e)
{

//Begin the animation.
AnimateImage();

//Get the next frame ready for rendering.
ImageAnimator.UpdateFrames();

//Draw the next frame in the animation.
e.Graphics.DrawImage(this.animatedImage, new Point(0, 0));
}

关于c# - 在 C# Windows 应用程序中为图像设置动画的最简单方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13154269/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com