C#中如何实现用动态图片作为背景图,如GIF格式的.
如果需要添加组件什么的,请说个下载地址,我满意的我会再加分。如果不用下载别的组件或控件,那请说明怎么导入?...
如果需要添加组件什么的,请说个下载地址, 我满意的我会再加分。
如果不用下载别的组件或控件,那请说明怎么导入? 展开
如果不用下载别的组件或控件,那请说明怎么导入? 展开
2个回答
展开全部
private void SetGifBackground(string gifPath)
{
Image gif = Image.FromFile(gifPath);
System.Drawing.Imaging.FrameDimension fd = new System.Drawing.Imaging.FrameDimension(gif.FrameDimensionsList[0]);
int count = gif.GetFrameCount(fd); //获取帧数(gif图片可能包含多帧,其它格式图片一般仅一帧)
Timer giftimer = new Timer();
giftimer.Interval = 100;
int i = 0;
Image bgImg = null;
giftimer.Tick += (s, e) => {
if (i >= count) { i = 0; }
gif.SelectActiveFrame(fd, i);
System.IO.Stream stream = new System.IO.MemoryStream();
gif.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg);
if (bgImg != null) { bgImg.Dispose(); }
bgImg = Image.FromStream(stream);
this.BackgroundImage = bgImg;
i++;
};
giftimer.Start();
}
给你写了个方法 在构造函数里面调用一下 记得path是本地的 不能是url
还有 你可以考虑给图放在PictureBox里面 或者使用固定的几帧非平铺模式重复的绘制 效率会更好些 具体你再优化把 我刚才测试已经OK了 记得要加分啊 10分太低了
{
Image gif = Image.FromFile(gifPath);
System.Drawing.Imaging.FrameDimension fd = new System.Drawing.Imaging.FrameDimension(gif.FrameDimensionsList[0]);
int count = gif.GetFrameCount(fd); //获取帧数(gif图片可能包含多帧,其它格式图片一般仅一帧)
Timer giftimer = new Timer();
giftimer.Interval = 100;
int i = 0;
Image bgImg = null;
giftimer.Tick += (s, e) => {
if (i >= count) { i = 0; }
gif.SelectActiveFrame(fd, i);
System.IO.Stream stream = new System.IO.MemoryStream();
gif.Save(stream, System.Drawing.Imaging.ImageFormat.Jpeg);
if (bgImg != null) { bgImg.Dispose(); }
bgImg = Image.FromStream(stream);
this.BackgroundImage = bgImg;
i++;
};
giftimer.Start();
}
给你写了个方法 在构造函数里面调用一下 记得path是本地的 不能是url
还有 你可以考虑给图放在PictureBox里面 或者使用固定的几帧非平铺模式重复的绘制 效率会更好些 具体你再优化把 我刚才测试已经OK了 记得要加分啊 10分太低了
博思aippt
2024-07-20 广告
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT...
点击进入详情页
本回答由博思aippt提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询