您好,登錄后才能下訂單哦!
小編這次要給大家分享的是Unity如何實現(xiàn)截圖功能,文章內(nèi)容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。
一、使用Unity自帶API
using UnityEngine; using UnityEngine.UI; public class ScreenShotTest : MonoBehaviour { public RawImage img; private void Update() { //使用ScreenCapture.CaptureScreenshot if (Input.GetKeyDown(KeyCode.A)) { ScreenCapture.CaptureScreenshot(Application.dataPath + "/Resources/Screenshot.jpg"); img.texture = Resources.Load<Texture>("Screenshot"); } //使用ScreenCapture.CaptureScreenshotAsTexture if (Input.GetKeyDown(KeyCode.S)) { img.texture = ScreenCapture.CaptureScreenshotAsTexture(0); } //使用ScreenCapture.CaptureScreenshotAsTexture if (Input.GetKeyDown(KeyCode.D)) { RenderTexture renderTexture = new RenderTexture(720, 1280, 0); ScreenCapture.CaptureScreenshotIntoRenderTexture(renderTexture); img.texture = renderTexture; } } }
經(jīng)過測試,使用ScreenCapture.CaptureScreenshotAsTexture和ScreenCapture.CaptureScreenshotAsTexture截取的都是整個屏幕,相當(dāng)于手機的截屏,無法自定義截圖區(qū)域,作用不大。使用ScreenCapture.CaptureScreenshot會有延遲。
二、通過Texture2D.ReadPixels來讀取屏幕區(qū)域像素
using UnityEngine; using System.Collections; using System; public class ScreenShotTest : MonoBehaviour { private void Update() { if (Input.GetKeyDown(KeyCode.A)) { StartCoroutine(CaptureByRect()); } } private IEnumerator CaptureByRect() { //等待渲染線程結(jié)束 yield return new WaitForEndOfFrame(); //初始化Texture2D, 大小可以根據(jù)需求更改 Texture2D mTexture = new Texture2D(Screen.width, Screen.height, TextureFormat.RGB24, false); //讀取屏幕像素信息并存儲為紋理數(shù)據(jù) mTexture.ReadPixels(new Rect(0, 0, Screen.width, Screen.height), 0, 0); //應(yīng)用 mTexture.Apply(); //將圖片信息編碼為字節(jié)信息 byte[] bytes = mTexture.EncodeToPNG(); //保存(不能保存為png格式) string fileName = DateTime.Now.Hour + ":" + DateTime.Now.Minute + ":" + DateTime.Now.Second + ".jpg"; System.IO.File.WriteAllBytes(Application.streamingAssetsPath + "/ScreenShot/" + fileName, bytes); UnityEditor.AssetDatabase.Refresh(); } }
看完這篇關(guān)于Unity如何實現(xiàn)截圖功能的文章,如果覺得文章內(nèi)容寫得不錯的話,可以把它分享出去給更多人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。