1.Application.CaptureScreenshot("Screenshot.png", 0);

2.

  1. exture2D CaptureScreenshot2(Rect rect)
  2. {
  3. // 先创建一个的空纹理,大小可根据实现需要来设置
  4. Texture2D screenShot = new Texture2D((int)rect.width, (int)rect.height, TextureFormat.RGB24,false);
  5. // 读取屏幕像素信息并存储为纹理数据,
  6. screenShot.ReadPixels(rect, 0, 0);
  7. screenShot.Apply();
  8. // 然后将这些纹理数据,成一个png图片文件
  9. byte[] bytes = screenShot.EncodeToPNG();
  10. string filename = Application.dataPath + "/Screenshot.png";
  11. System.IO.File.WriteAllBytes(filename, bytes);
  12. Debug.Log(string.Format("截屏了一张图片: {0}", filename));
  13. // 最后,我返回这个Texture2d对象,这样我们直接,所这个截图图示在游戏中,当然这个根据自己的需求的。
  14. return screenShot;
  15. }
  16. 截全屏(如下图, 注:有ui):
    CaptureScreenshot2( new Rect( Screen.width*0f, Screen.height*0f, Screen.width*1f, Screen.height*1f));


    截中间4分之(如下图):
    CaptureScreenshot2( new Rect( Screen.width*0.25f, Screen.height*0.25f, Screen.width*0.5f, Screen.height*0.5f));

3.

  1. Texture2D CaptureCamera(Camera camera, Rect rect)
  2. {
  3. // 创建一个RenderTexture对象
  4. RenderTexture rt = new RenderTexture((int)rect.width, (int)rect.height, 0);
  5. // 临时设置相关相机的targetTexture为rt, 并手动渲染相关相机
  6. camera.targetTexture = rt;
  7. camera.Render();
  8. //ps: --- 如果这样加上第二个相机,可以实现只截图某几个指定的相机一起看到的图像。
  9. //ps: camera2.targetTexture = rt;
  10. //ps: camera2.Render();
  11. //ps: -------------------------------------------------------------------
  12. // 激活这个rt, 并从中中读取像素。
  13. RenderTexture.active = rt;
  14. Texture2D screenShot = new Texture2D((int)rect.width, (int)rect.height, TextureFormat.RGB24,false);
  15. screenShot.ReadPixels(rect, 0, 0);// 注:这个时候,它是从RenderTexture.active中读取像素
  16. screenShot.Apply();
  17. // 重置相关参数,以使用camera继续在屏幕上显示
  18. camera.targetTexture = null;
  19. //ps: camera2.targetTexture = null;
  20. RenderTexture.active = null; // JC: added to avoid errors
  21. GameObject.Destroy(rt);
  22. // 最后将这些纹理数据,成一个png图片文件
  23. byte[] bytes = screenShot.EncodeToPNG();
  24. string filename = Application.dataPath + "/Screenshot.png";
  25. System.IO.File.WriteAllBytes(filename, bytes);
  26. Debug.Log(string.Format("截屏了一张照片: {0}", filename));
  27. return screenShot;
  28. }

Unity3d之截图的更多相关文章

  1. Unity3d之截图方法

    http://blog.csdn.net/highning0007/article/details/37991787 Unity3d之截图方法 分类: Unity3D2013-11-28 17:13  ...

  2. Unity3D随意截图并保存

    http://blog.csdn.net/awnuxcvbn/article/details/9199245 效果 代码 <pre name="code" class=&qu ...

  3. Unity3D for VR 学习(2): 暴风魔镜框架探索

    学习一个新技术,有三个法宝: 法宝1: 掌握厂家提供的用户API手册 法宝2: 掌握厂家提供的demo样例 法宝3:<每个研发人员都应树立的一个demo模式> 故,学习魔镜4技术,亦如是也 ...

  4. Unity3d截图保存到Android相册的实现

    Unity3d截图保存到Android相册的实现-----------------------------ultrasoon 季风原创--------------------------------- ...

  5. 【Unity3D】Unity3D 摄像机带透明截图

    转载请注明出处:http://www.cnblogs.com/shamoyuu/p/CropCamera.html ↓↓↓下面的废话可以不看↓↓↓ 最近处理了一批我的游戏的图标,步骤特别繁琐, 需要先 ...

  6. 在Unity3D中利用 RenderTexture 实现游戏内截图

    using System.Collections; using System.Collections.Generic; using System.IO; using UnityEngine; publ ...

  7. (转)Unity3d的3种截图方法

    下面是我总结的.在u3d中的,三种截屏方法: 1.使用Application类下的CaptureScreenshot方法. void CaptureScreen() { Application.Cap ...

  8. 获取Unity3D虚拟摄像机的图像

    最新博客地址已转到: http://blog.csdn.net/zzlyw?viewmode=contents   ------------------------------------------ ...

  9. [Unity3D]自己动手重制坦克舰队ArmadaTank

    [Unity3D]自己动手重制坦克舰队ArmadaTank 我玩过一款坦克游戏ArmadaTank(坦克舰队),如下图所示 几个月前我尝试用Unity3D重制这款游戏,已经可以玩起来了.下面是在PC上 ...

随机推荐

  1. <meta http-equiv = "X-UA-Compatible" cotent = "IE=edge,chrome=1"/>

    <meta http-equiv = "X-UA-Compatible" cotent = "IE=edge,chrome=1"/> 制定ie调用哪 ...

  2. How to Use a Function or a Procedure as a Parameter in another Function

    http://delphi.about.com/od/adptips2006/qt/functionasparam.htm In Delphi, procedural types (method po ...

  3. IPv6 相关的工作简介

    这里说明下,仅仅是IPv6在开发板上的相关的工作简介,没有很详细,都是自己一边积累,一边实践的.能帮助其他人最好,也算是给自己做个备忘录. 一.首先说下DHCPv6相关的.这里我使用的是DHCP6s. ...

  4. android 根据SD卡中图片路径读取并显示SD中的图片——源代码

    package com.guo; import java.io.File; import android.app.Activity; import android.graphics.Bitmap; i ...

  5. SQL自增长的数据插入

    --子增长的插入 /*创建表*/ create table teacher ( id int identity(1,1) primary key not null, name varchar(20) ...

  6. [Angular 2] Style Angular 2 Components

    Each Angular 2 Component can have its own styles which will remained contained inside the component. ...

  7. iOS开发——UI篇Swift篇&UISegmentedControl

    UISegmentedControl override func viewDidLoad() { super.viewDidLoad() titleLabel.text = titleString / ...

  8. nopCommerce 数据缓存

    为了提高一个系统或网站的性能和IO吞吐量,我们一般都会采用缓存技术.当然NopCommerce也不例外,本文我们就来给大家分析一下nop中Cache缓存相关类设计.核心源码及实现原理. 一.Nop.C ...

  9. mysql分表研究

    分表是分散数据库压力的好方法. 分表,最直白的意思,就是将一个表结构分为多个表,然后,可以再同一个库里,也可以放到不同的库. 当然,首先要知道什么情况下,才需要分表.个人觉得单表记录条数达到百万到千万 ...

  10. CentOS 6.4 离线安装 Cloudera 5.7.1 CDH 5.7.1

    因为项目开发需要要在本地组建一个Hadoop/Spark集群,除了Hadoop/Spark还要同时安装多个相关的组件,如果一个个组件安装配置,对于一个由多台服务器组成的集群来说,工作量是巨大的. 所以 ...