Version: 2023.2
public Color[] GetPixels ();

返回

Color[] An array that contains the pixel colors.

描述

Gets the pixel color data for a mipmap level as Color structs.

This method gets pixel data from the texture in CPU memory. Texture.isReadable must be true.

The array contains the pixels row by row, starting at the bottom left of the texture. The size of the array is the width × height of the texture.

Each pixel is a Color struct.

A single call to GetPixels is usually faster than multiple calls to GetPixel, especially for large textures. If a lower-precision representation is acceptable, GetPixels32 is faster and uses less memory because it does not perform integer-to-float conversions.

If GetPixels fails, Unity throws an exception. GetPixels might fail if the array contains too much data.

**注意:**对于基于深度数据的 WebCamTexture 实例,此方法通过 Color.r 属性来返回深度值的数组。另请参阅:WebCamTexture.isDepth


public Color[] GetPixels (int x, int y, int blockWidth, int blockHeight);

参数

x The starting x position of the section to fetch.
y The starting y position of the section to fetch.
blockWidth The width of the section to fetch.
blockHeight The height of the section to fetch.

返回

Color[] An array that contains the pixel colors.

描述

Gets the pixel color data for part of the texture as Color structs.

This version of GetPixels returns part of the texture instead of the whole texture.

**注意:**对于基于深度数据的 WebCamTexture 实例,此方法通过 Color.r 属性来返回深度值的数组。另请参阅:WebCamTexture.isDepth

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961