TiffStreamWriter.Write

Write(MemoryStream)

Writes the specified data.

public void Write(MemoryStream stream)
ParameterTypeDescription
streamMemoryStreamThe stream.

See Also


Write(byte[], int, int)

Writes the specified data.

public void Write(byte[] data, int offset, int dataLength)
ParameterTypeDescription
dataByte[]The data to write.
offsetInt32The data offset.
dataLengthInt32Length of the data to writer.

See Also


Write(byte[])

Writes the specified data.

public void Write(byte[] data)
ParameterTypeDescription
dataByte[]The data to write.

See Also


Write(double)

Writes a single double value to the stream.

public void Write(double data)
ParameterTypeDescription
dataDoubleThe value to write.

See Also


Write(double[])

Writes an array of double values to the stream.

public void Write(double[] data)
ParameterTypeDescription
dataDouble[]The array to write.

See Also


Write(float)

Writes a single float value to the stream.

public void Write(float data)
ParameterTypeDescription
dataSingleThe value to write.

See Also


Write(float[])

Writes an array of float values to the stream.

public void Write(float[] data)
ParameterTypeDescription
dataSingle[]The array to write.

See Also


Write(TiffRational)

Writes a single rational number value to the stream.

public void Write(TiffRational data)
ParameterTypeDescription
dataTiffRationalThe value to write.

See Also


Write(TiffSRational)

Writes a single signed rational number value to the stream.

public void Write(TiffSRational data)
ParameterTypeDescription
dataTiffSRationalThe value to write.

See Also


Write(TiffRational[])

Writes an array of unsigned rational values to the stream.

public void Write(TiffRational[] data)
ParameterTypeDescription
dataTiffRational[]The array to write.

See Also


Write(TiffSRational[])

Writes an array of signed rational values to the stream.

public void Write(TiffSRational[] data)
ParameterTypeDescription
dataTiffSRational[]The array to write.

See Also


Write(sbyte)

Writes a single signed byte value to the stream.

public void Write(sbyte data)
ParameterTypeDescription
dataSByteThe value to write.

See Also


Write(sbyte[])

Writes an array of signed byte values to the stream.

public void Write(sbyte[] data)
ParameterTypeDescription
dataSByte[]The array to write.

See Also


Write(int[])

Writes an array of integer values to the stream.

public void Write(int[] data)
ParameterTypeDescription
dataInt32[]The array to write.

See Also


Write(short)

Writes a single short value to the stream.

public void Write(short data)
ParameterTypeDescription
dataInt16The value to write.

See Also


Write(short[])

Writes an array of short values to the stream.

public void Write(short[] data)
ParameterTypeDescription
dataInt16[]The array to write.

See Also


Write(int)

Writes a single integer value to the stream.

public void Write(int data)
ParameterTypeDescription
dataInt32The value to write.

See Also


Write(byte)

Writes a single byte value to the stream.

public void Write(byte data)
ParameterTypeDescription
dataByteThe value to write.

See Also


Write(uint)

Writes a single unsigned integer value to the stream.

public void Write(uint data)
ParameterTypeDescription
dataUInt32The value to write.

See Also


Write(uint[])

Writes an array of unsigned integer values to the stream.

public void Write(uint[] data)
ParameterTypeDescription
dataUInt32[]The array to write.

See Also


Write(ushort)

Writes a single unsigned short value to the stream.

public void Write(ushort data)
ParameterTypeDescription
dataUInt16The value to write.

See Also


Write(ushort[])

Writes an array of unsigned short values to the stream.

public void Write(ushort[] data)
ParameterTypeDescription
dataUInt16[]The array to write.

See Also


Write(long)

Writes an array of signed long values to the stream.

public void Write(long data)
ParameterTypeDescription
dataInt64The array to write.

See Also


Write(long[])

Writes an array of signed long values to the stream.

public void Write(long[] data)
ParameterTypeDescription
dataInt64[]The array to write.

See Also


Write(ulong)

Writes an array of unsigned long values to the stream.

public void Write(ulong data)
ParameterTypeDescription
dataUInt64The array to write.

See Also


Write(ulong[])

Writes an array of unsigned long values to the stream.

public void Write(ulong[] data)
ParameterTypeDescription
dataUInt64[]The array to write.

See Also