将ushort []灰度值转换为byte []

时间:2011-03-27 14:53:31

标签: c# byte grayscale ushort

我的uhort[]格式为0-65536。但我需要以字节形式的灰度值!

如何以字节值转换ushort值?

由于

1 个答案:

答案 0 :(得分:4)

 byte value = (byte)(array[index] >> 8);