Class TiffStreamReader

TiffStreamReader class

The tiff stream for handling little endian tiff file format.

public class TiffStreamReader

Constructors

NameDescription
TiffStreamReader(byte[])Initializes a new instance of the TiffStreamReader class.
TiffStreamReader(StreamContainer)Initializes a new instance of the TiffStreamReader class.
TiffStreamReader(byte[], int)Initializes a new instance of the TiffStreamReader class.
TiffStreamReader(byte[], int, int)Initializes a new instance of the TiffStreamReader class.

Properties

NameDescription
Length { get; }Gets the reader length.
ThrowExceptions { get; set; }Gets or sets a value indicating whether exceptions are thrown on incorrect data processing (reading or writing to stream).

Methods

NameDescription
ReadBytes(long, long)Reads an array of unsigned byte values from the stream.
ReadBytes(byte[], int, long, long)Reads an array of byte values from the stream.
ReadDouble(long)Read a single double value from the stream.
ReadDoubleArray(long, long)Reads an array of double values from the stream.
ReadFloat(long)Read a single float value from the stream.
ReadFloatArray(long, long)Reads an array of float values from the stream.
ReadRational(long)Read a single rational number value from the stream.
ReadRationalArray(long, long)Reads an array of rational values from the stream.
ReadSByte(long)Reads signed byte data from the stream.
ReadSByteArray(long, long)Reads an array of signed byte values from the stream.
ReadSLong(long)Read signed integer value from the stream.
ReadSLongArray(long, long)Reads an array of signed integer values from the stream.
ReadSRational(long)Read a single signed rational number value from the stream.
ReadSRationalArray(long, long)Reads an array of signed rational values from the stream.
ReadSShort(long)Read signed short value from the stream.
ReadSShortArray(long, long)Reads an array of signed short values from the stream.
ReadULong(long)Read unsigned integer value from the stream.
ReadULongArray(long, long)Reads an array of unsigned integer values from the stream.
ReadUShort(long)Read unsigned short value from the stream.
ReadUShortArray(long, long)Reads an array of unsigned integer values from the stream.
ToStreamContainer(long)Converts the underlying data to the stream container.

See Also