Unity3D实现播放gif图功能
Unity是不识别Gif格式图的,需要我们使用c#将gif里多帧图转化为Texture2D格式。需要使用System.Drawing.dll.此dll在unity安装目录下就可以找到。由于unity没有gif格式的文件,所以我们无法在面板指定,需要动态加载。所以将gif图放在StreamingAssets文件夹下。以下为源代码:
using System; using System.Collections; using System.Collections.Generic; using System.Drawing; using System.Drawing.Imaging; using System.IO; using UnityEngine; public class PlayGif : MonoBehaviour { public UnityEngine.UI.Image Im; public string gifName = ""; public GameObject[] Ims; [SerializeField] private float fps = 5f; private List<Texture2D> tex2DList = new List<Texture2D>(); private float time; Bitmap mybitmp; void Start() { System.Drawing.Image image = System.Drawing.Image.FromFile(Application.streamingAssetsPath + "/"+gifName+".gif"); tex2DList = MyGif(image); } // Update is called once per frame void Update() { if (tex2DList.Count > 0) { time += Time.deltaTime; int index = (int)(time * fps) % tex2DList.Count; if (Im != null) { Im.sprite = Sprite.Create(tex2DList[index], new Rect(0, 0, tex2DList[index].width, tex2DList[index].height), new Vector2(0.5f, 0.5f)); } if (Ims.Length != 0) { for (int i = 0; i < Ims.Length; i++) Ims[i].GetComponent<Renderer>().material.mainTexture = tex2DList[index]; } } } private List<Texture2D> MyGif(System.Drawing.Image image) { List<Texture2D> tex = new List<Texture2D>(); if (image != null) { //Debug.Log("图片张数:" + image.FrameDimensionsList.Length); FrameDimension frame = new FrameDimension(image.FrameDimensionsList[0]); int framCount = image.GetFrameCount(frame);//获取维度帧数 for (int i = 0; i < framCount; ++i) { image.SelectActiveFrame(frame, i); Bitmap framBitmap = new Bitmap(image.Width, image.Height); using (System.Drawing.Graphics graphic = System.Drawing.Graphics.FromImage(framBitmap)) { graphic.DrawImage(image, Point.Empty); } Texture2D frameTexture2D = new Texture2D(framBitmap.Width, framBitmap.Height, TextureFormat.ARGB32, true); frameTexture2D.LoadImage(Bitmap2Byte(framBitmap)); tex.Add(frameTexture2D); } } return tex; } private byte[] Bitmap2Byte(Bitmap bitmap) { using (MemoryStream stream = new MemoryStream()) { // 将bitmap 以png格式保存到流中 bitmap.Save(stream, ImageFormat.Png); // 创建一个字节数组,长度为流的长度 byte[] data = new byte[stream.Length]; // 重置指针 stream.Seek(0, SeekOrigin.Begin); // 从流读取字节块存入data中 stream.Read(data, 0, Convert.ToInt32(stream.Length)); return data; } } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。
上一篇:C#使用RichTextBox实现替换文字及改变字体颜色功能示例
栏 目:C#教程
下一篇:C#基于QRCode实现动态生成自定义二维码图片功能示例
本文标题:Unity3D实现播放gif图功能
本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/4899.html
您可能感兴趣的文章
- 01-10C#实现txt定位指定行完整实例
- 01-10WinForm实现仿视频播放器左下角滚动新闻效果的方法
- 01-10C#实现清空回收站的方法
- 01-10C#实现读取注册表监控当前操作系统已安装软件变化的方法
- 01-10C#实现多线程下载文件的方法
- 01-10C#实现Winform中打开网页页面的方法
- 01-10C#实现远程关闭计算机或重启计算机的方法
- 01-10C#自定义签名章实现方法
- 01-10C#文件断点续传实现方法
- 01-10winform实现创建最前端窗体的方法
阅读排行
本栏相关
- 01-10C#通过反射获取当前工程中所有窗体并
- 01-10关于ASP网页无法打开的解决方案
- 01-10WinForm限制窗体不能移到屏幕外的方法
- 01-10WinForm绘制圆角的方法
- 01-10C#实现txt定位指定行完整实例
- 01-10WinForm实现仿视频播放器左下角滚动新
- 01-10C#停止线程的方法
- 01-10C#实现清空回收站的方法
- 01-10C#通过重写Panel改变边框颜色与宽度的
- 01-10C#实现读取注册表监控当前操作系统已
随机阅读
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-11ajax实现页面的局部加载
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 01-10C#中split用法实例总结
- 04-02jquery与jsp,用jquery
- 01-10delphi制作wav文件的方法
- 01-10SublimeText编译C开发环境设置
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 08-05DEDE织梦data目录下的sessions文件夹有什