Class TiffStreamWriter

TiffStreamWriter class

Tiff stream writer.

public class TiffStreamWriter

Constructors

NameDescription
TiffStreamWriter(StreamContainer)Initializes a new instance of the TiffStreamWriter class.

Properties

NameDescription
Position { get; set; }Gets or sets the stream position.
SyncRoot { get; }Gets an object that can be used to synchronize access to the synchronized resource.

Methods

NameDescription
Write(byte[])Writes the specified data.
Write(byte[], int, int)Writes the specified data.
WriteDouble(double)Writes a single double value to the stream.
WriteDoubleArray(double[])Writes an array of double values to the stream.
WriteFloat(float)Writes a single float value to the stream.
WriteFloatArray(float[])Writes an array of float values to the stream.
WriteRational(TiffRational)Writes a single rational number value to the stream.
WriteRationalArray(TiffRational[])Writes an array of unsigned rational values to the stream.
WriteSByte(sbyte)Writes a single signed byte value to the stream.
WriteSByteArray(sbyte[])Writes an array of signed byte values to the stream.
WriteSlong(int)Writes a single integer value to the stream.
WriteSLongArray(int[])Writes an array of integer values to the stream.
WriteSRational(TiffSRational)Writes a single signed rational number value to the stream.
WriteSRationalArray(TiffSRational[])Writes an array of signed rational values to the stream.
WriteSShort(short)Writes a single short value to the stream.
WriteSShortArray(short[])Writes an array of short values to the stream.
WriteUByte(byte)Writes a single byte value to the stream.
WriteULong(uint)Writes a single unsigned integer value to the stream.
WriteULongArray(uint[])Writes an array of unsigned integer values to the stream.
WriteUShort(ushort)Writes a single unsigned short value to the stream.
WriteUShortArray(ushort[])Writes an array of unsigned short values to the stream.

See Also