TiffStreamReader.ReadBytes

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

Reads an array of byte values from the stream.

public long ReadBytes(byte[] array, int arrayIndex, long position, long count)
ParameterTypeDescription
arrayByte[]The array to fill.
arrayIndexInt32The array index to start putting values to.
positionInt64The stream position to read from.
countInt64The elements count to read.

Return Value

The array of byte values.

See Also


ReadBytes(long, long)

Reads an array of unsigned byte values from the stream.

public byte[] ReadBytes(long position, long count)
ParameterTypeDescription
positionInt64The position to read from.
countInt64The elements count.

Return Value

The array of unsigned byte values.

See Also