TiffBigEndianStreamReader

TiffBigEndianStreamReader class

The tiff stream for handling big endian tiff file format.

public class TiffBigEndianStreamReader : TiffStreamReader

Constructors

NameDescription
TiffBigEndianStreamReader(byte[])Initializes a new instance of the TiffBigEndianStreamReader class.
TiffBigEndianStreamReader(StreamContainer)Initializes a new instance of the TiffBigEndianStreamReader class.
TiffBigEndianStreamReader(byte[], int)Initializes a new instance of the TiffBigEndianStreamReader class.
TiffBigEndianStreamReader(byte[], int, int)Initializes a new instance of the TiffBigEndianStreamReader 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.
ReadLong(long)Read unsigned long value from the stream.
ReadLongArray(long, long)Reads an array of ulong 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.
ReadSInt(long)Read signed integer value from the stream.
ReadSIntArray(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.
ReadUInt(long)Read unsigned integer value from the stream.
ReadUIntArray(long, long)Reads an array of unsigned integer values from the stream.
ReadULong(long)Read unsigned long value from the stream.
ReadULongArray(long, long)Reads an array of ulong 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