鸟语天空
保存Texture2D为png图片
post by:追风剑情 2015-6-16 14:18
//保存Texture2D为png图片
    public static void SavePNG(string filePath, Texture2D texture)
    {
        try
        {
            byte[] pngData = texture.EncodeToPNG();
            File.WriteAllBytes(filePath, pngData);
        }
        catch (Exception ex)
        {
            Debug.Log(ex.StackTrace);
        }
    }
评论:
发表评论:
昵称

邮件地址 (选填)

个人主页 (选填)

内容