中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Unity實現截屏以及根據相機畫面截圖的方法

發布時間:2020-08-03 09:37:55 來源:億速云 閱讀:539 作者:小豬 欄目:編程語言

這篇文章主要講解了Unity實現截屏以及根據相機畫面截圖的方法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

在游戲開發和軟件開發中,經常需要截圖的功能,分帶UI的截圖和不帶UI的截圖功能。代碼如下:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
 
public static class ScreenShotForCamera{
 
 public static void CaptureScreen(string _path = null)
 {
 if (_path == null)
 _path = "Screenshot.png";
 
 Application.CaptureScreenshot(_path, 0);
 }
 
 public static Texture2D CaptureScreen(Rect rect, bool _isCreatePhoto = false, string _path = null)
 {
 // 先創建一個的空紋理,大小可根據實現需要來設置 
 Texture2D screenShot = new Texture2D((int)rect.width, (int)rect.height, TextureFormat.RGB24, false);
 
 // 讀取屏幕像素信息并存儲為紋理數據, 
 screenShot.ReadPixels(rect, 0, 0);
 screenShot.Apply();
 
 // 然后將這些紋理數據,成一個png圖片文件 
 if (_isCreatePhoto)
 {
 if(_path == null)
 _path = Application.dataPath + "/Screenshot.png";
 
 byte[] bytes = screenShot.EncodeToPNG();
 string filename = _path;
 System.IO.File.WriteAllBytes(filename, bytes);
 Debug.Log(string.Format("截屏了一張圖片: {0}", filename));
 }
 
 // 最后,我返回這個Texture2d對象,這樣我們直接,所這個截圖圖示在游戲中,當然這個根據自己的需求的。 
 return screenShot;
 }
 
 //
 public static Texture2D CaptureCamera(ref Camera _camera, Rect _rect, int _destX, int _destY, bool _isCreatePhoto = false, string _path = null)
 {
 RenderTexture renderTexture = new RenderTexture((int)_rect.width, (int)_rect.height, 24, RenderTextureFormat.ARGB32);
 _camera.targetTexture = renderTexture;
 _camera.Render();
 
 // 激活這個renderTexture, 并從中中讀取像素
 RenderTexture.active = _camera.targetTexture;
 Texture2D screenShot = new Texture2D((int)_rect.width, (int)_rect.height, TextureFormat.ARGB32, false);
 screenShot.ReadPixels(_rect, _destX, _destY); //從(_destX,_destY)坐標開始讀取_rect大小的圖片
 screenShot.Apply();
 
 //重置參數
 //_camera.targetTexture = null;
 RenderTexture.active = null;
 //GameObject.Destroy(renderTexture);
 
 //生成PNG圖片
 if (_isCreatePhoto)
 {
 if (_path == null)
 _path = Application.dataPath + "/Screenshot.png";
 
 byte[] bytes = screenShot.EncodeToPNG();
 string filename = _path;
 System.IO.File.WriteAllBytes(filename, bytes);
 Debug.Log(string.Format("截屏了一張照片: {0}", filename));
 }
 
 return screenShot;
 }
}

小編再為大家分享一段:Unity實現截屏功能,希望可以幫到大家

public class ScreenShot : MonoBehaviour 
{

 void OnScreenShotClick()
 {
 //得到當前系統時間
 System.DateTime now = System.DateTime.Now;
 string times = now.ToString();
 //去掉前后空格
 times = times.Trim();
 //將斜杠替換成橫杠
 times = times.Replace("/", "-");

 string fileName = "ARScreenShot" + times + ".png";
 //判斷該平臺是否為安卓平臺
 if (Application.platform == RuntimePlatform.Android)
 {
 //參數依次為 屏幕寬度 屏幕高度 紋理格式 是否使用映射
 Texture2D texture = new Texture2D(Screen.width, Screen.height, TextureFormat.RGB24, false);
 //讀取貼圖
 texture.ReadPixels(new Rect(0, 0, Screen.width, Screen.height), 0, 0);
 //應用截屏
 texture.Apply();
 //將對象序列化
 byte[] bytes = texture.EncodeToPNG();
 //設定存儲到的手機文件夾路徑
 string destination = "/sdcard/DCIM/Screenshots";
 //如果不存在該文件夾
 if (!Directory.Exists(destination))
 {
 //創建該文件夾
 Directory.CreateDirectory(destination);
 }
 string pathSave = destination + "/" + fileName;
 File.WriteAllBytes(pathSave, bytes);
 }
 }
}

看完上述內容,是不是對Unity實現截屏以及根據相機畫面截圖的方法有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

张家界市| 瓮安县| 新化县| 星子县| 遵义市| 威远县| 石门县| 呼伦贝尔市| 稷山县| 中山市| 东乡族自治县| 三原县| 平谷区| 治县。| 宜州市| 天台县| 西华县| 兰坪| 疏附县| 绥德县| 合作市| 宁城县| 轮台县| 鹤峰县| 平阴县| 额济纳旗| 肃北| 合江县| 红原县| 汾西县| 安新县| 德保县| 绥棱县| 聂拉木县| 淮南市| 灵寿县| 南岸区| 连山| 怀宁县| 宁乡县| 巧家县|