markdown Unity - 加载图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Unity - 加载图像相关的知识,希望对你有一定的参考价值。

``` c#
public static Texture2D LoadPNG(string filePath) {
  Texture2D tex = null;
  byte[] fileData;
     
  if (File.Exists(filePath))     {
    fileData = File.ReadAllBytes(filePath);
    tex = new Texture2D(2, 2);
    tex.LoadImage(fileData); //..this will auto-resize the texture dimensions.
  }
  return tex;
}
```

以上是关于markdown Unity - 加载图像的主要内容,如果未能解决你的问题,请参考以下文章

Unity C# 从字节加载图像

如何使用 Unity C# 从 android 内部存储访问图像和 3D 对象

[Unity3D]如何创建图片文件夹的assetbundle,然后将这些图片加载为纹理?

Unity:将精灵保存/加载为 Json

以编程方式在图像中加载纹理并将边框设置为图像 Unity

unity3d 从 web 和内存问题加载 spritesheet