Convert a Bitmap to a Texture2D in Unity

前端 未结 2 940
死守一世寂寞
死守一世寂寞 2021-01-28 06:22

I\'m in a scenario where I\'m manipulating bitmaps using AForge.net in Unity. However, a Bitmap can\'t be applied to a texture in Unity, so I visibly can see my output, so how i

2条回答
  •  时光说笑
    2021-01-28 06:53

    you can try these line to convert System.Drawing.Bitmap to UnityEngine.Texture2D

    Bitmap bmp = new Bitmap;
    MemoryStream ms= new MemoryStream();
    bmp.Save(ms,ImageFormat.PNG);
    var buffer = new byte[ms.Length];
    ms.position = 0;
    ms.Read(buffer,0,buffer.Length);
    Texture2D t = new Texture2D(1,1);
    t.LoadImage(buffer);
    

提交回复
热议问题