标签: c# byte grayscale ushort
我的uhort[]格式为0-65536。但我需要以字节形式的灰度值!
uhort[]
0-65536
如何以字节值转换ushort值?
由于
答案 0 :(得分:4)
byte value = (byte)(array[index] >> 8);