TiffStreamReader.ReadBytes

ReadBytes(byte[], int, long, long)

从流中读取字节值数组。

public long ReadBytes(byte[] array, int arrayIndex, long position, long count)
参数类型描述
数组Byte[]要填充的数组。
arrayIndexInt32开始放置值的数组索引。
位置Int64要读取的流位置。
countInt64要读取的元素计数。

返回值

字节值数组。

另请参见


ReadBytes(long, long)

从流中读取无符号字节值数组。

public byte[] ReadBytes(long position, long count)
参数类型描述
位置Int64读取位置。
countInt64元素计数。

返回值

无符号字节值数组。

另请参见