mixedreality/com.microsoft.mixedreality..../Core/Extensions/Texture2DExtensions.cs

86 lines
3.7 KiB
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit
{
/// <summary>
/// A collection of helper functions for Texture2D
/// </summary>
public static class Texture2DExtensions
{
/// <summary>
/// Fills the pixels. You will need to call Apply on the texture in order for changes to take place.
/// </summary>
/// <param name="texture2D">The Texture2D.</param>
/// <param name="row">The row to start filling at.</param>
/// <param name="col">The column to start filling at.</param>
/// <param name="width">The width to fill.</param>
/// <param name="height">The height to fill.</param>
/// <param name="fillColor">Color of the fill.</param>
/// <remarks>This function considers row 0 to be left and col 0 to be top.</remarks>
public static void FillPixels(this Texture2D texture2D, int row, int col, int width, int height, Color fillColor)
{
if (col + width > texture2D.width || row + height > texture2D.height)
{
throw new IndexOutOfRangeException();
}
Color32 toColor = fillColor; // Implicit cast
Color32[] colors = new Color32[width * height];
for (int i = 0; i < colors.Length; i++)
{
colors[i] = toColor;
}
texture2D.SetPixels32(col, (texture2D.height - row) - height, width, height, colors);
}
/// <summary>
/// Fills the texture with a single color.
/// </summary>
/// <param name="texture2D">The Texture2D.</param>
/// <param name="fillColor">Color of the fill.</param>
public static void FillPixels(this Texture2D texture2D, Color fillColor)
{
texture2D.FillPixels(0, 0, texture2D.width, texture2D.height, fillColor);
}
/// <summary>
/// Captures a region of the screen and returns it as a texture.
/// </summary>
/// <param name="x">x position of the screen to capture from (bottom-left)</param>
/// <param name="y">y position of the screen to capture from (bottom-left)</param>
/// <param name="width">width of the screen area to capture</param>
/// <param name="height">height of the screen area to capture</param>
/// <returns>A Texture2D containing pixels from the region of the screen specified</returns>
/// <remarks>You should call this in OnPostRender.</remarks>
public static Texture2D CaptureScreenRegion(int x, int y, int width, int height)
{
Texture2D tex = new Texture2D(width, height);
tex.ReadPixels(new Rect(x, y, Screen.width, Screen.height), 0, 0);
tex.Apply();
return tex;
}
/// <summary>
/// Creates a texture from a defined region.
/// </summary>
/// <param name="texture2D">The Texture2D.</param>
/// <param name="x">x position of this texture to get the texture from</param>
/// <param name="y">y position of this texture to get the texture from</param>
/// <param name="width">width of the region to capture</param>
/// <param name="height">height of the region to capture</param>
public static Texture2D CreateTextureFromRegion(this Texture2D texture2D, int x, int y, int width, int height)
{
Color[] pixels = texture2D.GetPixels(x, y, width, height);
Texture2D destTex = new Texture2D(width, height);
destTex.SetPixels(pixels);
destTex.Apply();
return destTex;
}
}
}